body {
  min-height: 100vh;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #d9c5ff;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  background: linear-gradient(135deg, rgba(217, 197, 255, 0.85), rgba(200, 170, 245, 0.9));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180, 140, 220, 0.2);
  margin: 0;
}

.container {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-brand {
  flex: 1;
  min-width: 0;
}

.header-brand-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7a16b0 0%, #9b3dd6 100%);
  border-radius: 12px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(122, 22, 176, 0.3);
}

.header-text {
  flex: 1;
  min-width: 0;
}

.header-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.25rem;
}

.header-logo-text {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a16b0;
}

.header-badge {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(135deg, #7a16b0 0%, #9b3dd6 100%);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.header-headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2b0f44;
  margin: 0 0 0.15rem;
  line-height: 1.3;
}

.header-copy {
  font-size: 0.78rem;
  color: #5a3d6e;
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #7a16b0 0%, #9b3dd6 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 3px 12px rgba(122, 22, 176, 0.3);
  transition: all 0.25s ease;
}

.header-cta:hover {
  background: linear-gradient(135deg, #8a1cc8 0%, #ab4de6 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(122, 22, 176, 0.4);
  color: #fff;
}

.header-cta svg {
  transition: transform 0.2s ease;
}

.header-cta:hover svg {
  transform: translateX(2px);
}

.header-link {
  font-size: 0.8rem;
  color: #5a3d6e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-link:hover {
  color: #7a16b0;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .header-brand {
    order: 1;
  }
  
  .header-brand-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  
  .header-icon {
    width: 40px;
    height: 40px;
  }
  
  .header-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .header-text {
    text-align: center;
  }
  
  .header-eyebrow {
    justify-content: center;
  }
  
  .header-actions {
    order: 2;
  }
  
  .header-headline {
    font-size: 1rem;
  }
  
  .header-copy {
    font-size: 0.75rem;
  }
}

.logo {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: 180px; 
  object-fit: contain;
  display: block;
}

/* Language dropdown styling for header */
.header-right details {
  position: relative;
}

.header-right details summary {
  list-style: none;
  cursor: pointer;
}

.header-right details summary::-webkit-details-marker {
  display: none;
}

.header-right details ul {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  z-index: 1000;
}

.header-right details li {
  list-style: none;
}

.header-right details a {
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  color: #374151;
  transition: background-color 0.2s;
}

.header-right details a:hover {
  background-color: #f3f4f6;
}

/* Dashboard header language dropdown styling */
.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details {
  position: relative;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details summary {
  list-style: none;
  cursor: pointer;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details summary::-webkit-details-marker {
  display: none;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details ul {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  z-index: 1000;
  margin-top: 0.5rem;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details li {
  list-style: none;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details a {
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  color: #374151;
  transition: background-color 0.2s;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details a:hover {
  background-color: #f3f4f6;
}

.login-container {
  padding-top: 80px;
  margin-top: 0;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.login-container {
  background: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 40px 20px 140px;
  position: relative;
  overflow: auto;
  gap: 40px;
}

.login-container {
  position: relative;
  z-index: 1;
}

.login-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.login-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  will-change: transform;
  transform: translateZ(0);
}

.login-video::after {
  display: none;
}

.login-container::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: -1;
  pointer-events: none;
}


.text-gradient {
  background: linear-gradient(90deg, #461967, #7a1a9a, #941ad2, #7a1a9a, #461967);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  animation: reflectedGradient 3s ease-in-out infinite;
}

@keyframes reflectedGradient {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.carousel-item {
  padding: 2rem;
  text-align: center;
}

/* ===== Login carousel redesign ===== */
.login-carousel {
  max-width: 860px;
  margin: 0 auto;
  color: #f9f3ff;
  font-family: 'Manrope', sans-serif;
  transform: translateX(50px);
}

.login-carousel .carousel-inner {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-carousel .carousel-item {
  padding: 0;
  text-align: left;
}

.login-carousel .slide-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: #ae5ed7;
  margin-bottom: 0.25rem;
}

.login-carousel .slide-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  line-height: 1.2;
  margin: 0;
  color: #7a16b0;
  text-shadow: 0 2px 6px rgba(122, 22, 176, 0.25);
}

.login-carousel .slide-copy {
  margin: 0;
  color: #cbc4db !important;
  font-size: 1rem;
  line-height: 1.55;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #cbc4db !important;
  text-shadow: none !important;
}

.clients-slide .slide-copy {
  color: #3f3f3f !important;
  -webkit-text-fill-color: #3f3f3f !important;
  margin-top: -2px;
}

.partner-slide .slide-copy {
  color: #3f3f3f !important;
  -webkit-text-fill-color: #3f3f3f !important;
}

.login-carousel p {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}

.clients-slide,
.partner-slide {
  position: relative;
  padding: 0 1.75rem 0 0;
  border-radius: 32px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border: none;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  transform-style: preserve-3d;
  color: #1f0b35;
  will-change: transform, opacity;
}

.clients-slide.expansion-active::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(24, 7, 33, 0.35);
  backdrop-filter: blur(12px);
  z-index: 1;
}

.clients-slide::before,
.partner-slide::before,
.clients-slide::after,
.partner-slide::after {
  display: none;
}

.clients-slide > *,
.partner-slide > * {
  position: relative;
  z-index: 1;
}

/* Logos marquee */

.logos-marquee {
  display: flex;
  gap: 0.6rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.logos-marquee .marquee-track {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex: 0 0 auto;
  min-width: 100%;
  animation: marqueeLeft 18s linear infinite;
  position: relative;
}

.logos-marquee + .logos-marquee {
  margin-top: 0.25rem;
}

.logos-marquee.marquee-right .marquee-track {
  animation-name: marqueeRight;
  animation-duration: 22s;
}

.logos-marquee.is-paused .marquee-track {
  animation-play-state: paused;
}

.logo-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  background: #d9c5ff;
  color: #3a225b;
  border-radius: 26px;
  padding: 1.35rem 1.8rem;
  min-width: 240px;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.logo-card img {
  max-height: 58px;
  max-width: 180px;
  object-fit: contain;
}

.logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.logo-card.expanded {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  width: clamp(280px, 36vw, 360px);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 25px 60px rgba(10, 10, 30, 0.35);
  border-radius: 26px;
  z-index: 3;
  pointer-events: none;
}

.client-detail-panel {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1000;
  background: rgba(217, 197, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.client-detail-panel.is-visible {
  opacity: 1;
  pointer-events: auto;
}


.client-detail-content {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 240, 255, 0.95));
  border-radius: 32px;
  padding: 2.75rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  box-shadow: 
    0 25px 60px rgba(90, 40, 140, 0.22),
    0 8px 20px rgba(90, 40, 140, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(180, 140, 220, 0.25);
  max-width: 320px;
  width: 90%;
  position: relative;
  animation: cardPopIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  min-height: 420px;
}

@keyframes cardPopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.client-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: rgba(120, 80, 160, 0.1);
  color: #5a2d82;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-detail-close:hover {
  background: rgba(120, 80, 160, 0.2);
  transform: scale(1.1);
}

.client-detail-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9c5ff;
  border-radius: 18px;
  padding: 1.25rem 1.75rem;
  box-shadow: 
    inset 0 0 0 1px rgba(148, 26, 210, 0.12),
    0 4px 12px rgba(140, 80, 200, 0.1);
}

.client-detail-logo {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
}

.client-detail-text {
  flex: 0 0 auto;
}

.client-detail-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  font-weight: 600;
  color: #9b5dc7;
  margin-bottom: 0.35rem;
  background: linear-gradient(90deg, #9b5dc7, #7a16b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.client-detail-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #2b0f44;
  line-height: 1.3;
}

.client-detail-description {
  margin: 0;
  font-size: 0.9rem;
  color: #5a3d6e;
  line-height: 1.6;
  max-width: 280px;
}

.client-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #7a16b0 0%, #9b3dd6 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 
    0 4px 15px rgba(122, 22, 176, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.client-detail-cta:hover {
  background: linear-gradient(135deg, #8a1cc8 0%, #ab4de6 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(122, 22, 176, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
}

.client-detail-cta svg {
  transition: transform 0.2s ease;
}

.client-detail-cta:hover svg {
  transform: translate(2px, -2px);
}

/* Partner slide */
.partner-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 1rem;
  position: relative;
  margin-top: 0.6rem;
}

.partner-card::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, rgba(255,255,255,0.25), rgba(122,26,154,0.35), rgba(255,255,255,0.25));
  opacity: 0.25;
  animation: spin 12s linear infinite;
}

.partner-mark {
  width: 150px;
  height: 150px;
  border-radius: 26px;
  background: #6c2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.partner-mark img {
  max-width: 120px;
  max-height: 90px;
  object-fit: contain;
}

.partner-details {
  z-index: 1;
}

.partner-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
  color: #941ad2;
}

.partner-details p {
  margin: 0;
  color: #3f3f3f !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #3f3f3f !important;
  text-shadow: none !important;
}

.login-carousel .partner-details p {
  background: none;
  -webkit-text-fill-color: #cbc4db;
  text-shadow: none;
}

.partner-highlights {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.partner-highlights span {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes marqueeRight {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .logos-marquee .marquee-track,
  .partner-card::after {
    animation: none;
  }
}

.carousel-item p:not(.slide-copy):not(.partner-details p) {
  background: #e0e0e0 !important;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5), 0 -1px 1px rgba(0,0,0,0.3);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.3px;
}

.btn-custom {
  background-color: #941ad2;
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
}

.btn-custom:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .login-container {
    padding: 20px 30px;
  }
  
  .carousel-item {
    padding: 1.5rem;
  }
  
  .text-gradient {
    font-size: 2.2rem;
  }
  
  .carousel-item p {
    font-size: 1.1rem;
  }
}

@media (max-width: 991.98px) {
  .login-container {
    flex-direction: column;
    padding: 50px 15px 20px;
    text-align: center;
  }

  .login-carousel .carousel-item {
    text-align: center;
  }

  .login-carousel {
    transform: none;
  }

  .clients-slide,
  .partner-slide {
    padding: 2rem 1.5rem;
  }

  .partner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partner-mark {
    margin: 0 auto;
  }
  
  .col-md-6, 
  .col-md-5 {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }
  
  .login-box {
    margin-top: 40px;
    margin-left: 0;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }
  
  .carousel-item {
    height: auto;
    padding: 2rem 1rem;
  }
  
  .text-gradient {
    font-size: 2rem;
  }
  
  .carousel-item p {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .login-container {
    padding-top: 60px; 
  }
  .login-box {
    padding: 20px 15px;
  }
  
  .text-gradient {
    font-size: 1.75rem;
  }
  
  .carousel-item p {
    font-size: 0.95rem;
  }
  
  .btn-custom, 
  .btn-login,
  .btn-custom-new {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .youtube-ripple-btn {
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
  }
  
  .youtube-ripple-btn .ripple-ring {
    width: 60px;
    height: 60px;
  }
}

.login-box {
  background-color: #d9c5ff;
  border-radius: 10px;
  padding: 25px;
  width: 100%;
  max-width: 380px;
  color: white;
  box-shadow: 0 0 20px rgba(69, 30, 170, 0.5);
  position: relative;
  z-index: 2;
  margin: 0 auto;
  transform: translateX(20px);
  box-sizing: border-box;
  margin-top: 60px;
}

.login-box input {
  margin-bottom: 15px;
}

.login-box .form-control {
  border-radius: 6px;
}

.btn-login {
  background-color: #941ad2;
  color: white;
  width: 100%;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #7a16b0;
}

.btn-custom-new {
  background-color: #451eaa;
  color: white;
  border-radius: 5px;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-custom-new:hover {
  background-color: #38198f;
  color: white;
}


.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}


.social-icon.fa-facebook:hover {
    background: #1877f2;
    color: white;
}


.social-icon.fa-linkedin:hover {
    background: #0a66c2;
    color: white;
}


.social-icon.fa-envelope:hover {
    background: #ea4335;
    color: white;
}

.footer-bar {
  background-color: #000;
  padding: 12px 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 0.9rem;
  color: #fff;
  margin-top: 20px;
  border-top: 1px solid #451eaa;
}

.footer-bar a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-bar a:hover {
  color: #b39ddb;
  text-decoration: none;
}


.mt-4 {
  text-align: center;
  padding: 12px 10px;
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  gap: 10px 20px;
}

.mt-4::before {
  content: none; 
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  position: relative;
  padding-left: 15px;
}

.footer-link::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b39ddb;
}

.footer-link:hover {
  color: #b39ddb;
  text-decoration: none;
}

.info-icon {
  background-color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}


.youtube-ripple-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.youtube-ripple-btn:hover {
  transform: scale(1.1);
}


.center-circle {
  width: 50px;
  height: 50px;
  background-color: #ff0000;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.center-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}


.play-icon {
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
  transition: all 0.3s ease;
}

.play-icon:hover {
  transform: scale(1.2);
}


.ripple-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 0, 0.2);
  border-radius: 50%;
  animation: rippleAnim 2s infinite;
  z-index: 1;
}

.ripple-ring.delay {
  animation-delay: 1s;
}


@keyframes rippleAnim {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ========================================
   Contact Us Page Styles
   ======================================== */
.contact-page {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
}

.contact-page .login-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.contact-page .login-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 
    0 25px 60px rgba(90, 40, 140, 0.2),
    0 8px 20px rgba(90, 40, 140, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(180, 140, 220, 0.2);
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-logo {
  margin-bottom: 1.25rem;
}

.contact-logo img {
  height: 60px;
  width: auto;
}

.contact-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2b0f44;
  margin: 0 0 0.5rem;
}

.contact-subtitle {
  font-size: 0.9rem;
  color: #6b5280;
  margin: 0;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a2d6b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(140, 100, 180, 0.25);
  border-radius: 10px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  color: #2b0f44;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7a16b0;
  box-shadow: 0 0 0 3px rgba(122, 22, 176, 0.1);
  background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a8aad;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: linear-gradient(135deg, #7a16b0 0%, #9b3dd6 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 
    0 4px 15px rgba(122, 22, 176, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.contact-submit:hover {
  background: linear-gradient(135deg, #8a1cc8 0%, #ab4de6 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(122, 22, 176, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.contact-submit svg {
  transition: transform 0.2s ease;
}

.contact-submit:hover svg {
  transform: translateX(3px);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(140, 100, 180, 0.15);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #5a3d6e;
}

.contact-info-item svg {
  color: #7a16b0;
  flex-shrink: 0;
}

.contact-back {
  text-align: center;
  margin-top: 1.5rem;
}

.contact-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #7a16b0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.contact-back a:hover {
  color: #5a0d8a;
}

.contact-back a svg {
  transition: transform 0.2s ease;
}

.contact-back a:hover svg {
  transform: translateX(-3px);
}

/* ========================================
   NEW Split-Screen Login Layout
   ======================================== */

.login-page-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
}

.login-split-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Left Panel - Video Background with Slider */
.login-left-panel {
  position: relative;
  width: 66%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem;
  overflow: hidden;
}

.login-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.login-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.78);
  z-index: 1;
}

/* Contact Us Button - Top Left */
.login-left-header {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
}

.contact-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #7a16b0 0%, #9b3dd6 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(122, 22, 176, 0.3);
  transition: all 0.3s ease;
}

.contact-us-btn:hover {
  background: linear-gradient(135deg, #8a1cc8 0%, #ab4de6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 22, 176, 0.4);
  color: #fff;
}

.contact-us-btn i {
  font-size: 0.85rem;
}

/* Carousel Navigation Dots - Top Right */
.login-carousel-dots {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.carousel-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(122, 22, 176, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #7a16b0;
  border-color: #7a16b0;
}

.carousel-dot:hover {
  border-color: #7a16b0;
}

/* Carousel Content */
.login-left-carousel {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

/* Slide Content Layout */
.slide-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.slide-content-centered {
  justify-content: center;
  text-align: center;
}

.slide-text-section {
  flex: 1;
  max-width: 450px;
}

.slide-text-full {
  max-width: 100%;
  text-align: center;
}

.slide-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7a16b0;
  margin-bottom: 0.5rem;
}

.slide-title-large {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #941ad2;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 8px rgba(148, 26, 210, 0.15);
}

.slide-divider {
  width: 60px;
  height: 4px;
  background: rgba(122, 22, 176, 0.3);
  margin-bottom: 1rem;
}

.slide-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #3a2255;
  margin: 0;
}

.slide-description-centered {
  max-width: 600px;
  margin: 0 auto;
}

/* Slide Image Section */
.slide-image-section {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

.slide-image-wrapper {
  width: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(90, 40, 140, 0.2);
}

.slide-image-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Stats Cards */
.slide-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.stat-card {
  flex: 1;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-gold {
  background: #dac5ff;
}

.stat-brown {
  background: #a58bd3;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-gold .stat-number {
  color: #941ad2;
}

.stat-brown .stat-number {
  color: #fff;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stat-gold .stat-label {
  color: #941ad2;
}

.stat-brown .stat-label {
  color: #fff;
}

.stat-desc {
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0;
}

.stat-gold .stat-desc {
  color: rgba(58, 32, 32, 0.85);
}

.stat-brown .stat-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Clients Grid (Slide 2) */
.slide-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.25rem;
  margin-top: 1.75rem;
}

.client-grid-card {
  position: relative;
  text-align: center;
  padding: 0.25rem 0.5rem 1.25rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-grid-card:hover {
  transform: translateY(-3px);
}

.client-grid-logo {
  width: 115px;
  height: 105px;
  margin: 0 auto;
  background: rgba(221, 202, 255, 0.85);
  border-radius: 18px;
  border: 2px solid rgba(122, 22, 176, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(92, 40, 140, 0.12);
}

.client-grid-logo img {
  max-height: 58px;
  max-width: 85px;
  object-fit: contain;
}

.client-grid-connector {
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-grid-connector::before {
  content: '';
  width: 2px;
  height: 22px;
  background: rgba(122, 22, 176, 0.55);
  border-radius: 999px;
}

.client-grid-dot {
  position: absolute;
  bottom: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dfdbe9;
  border: 2px solid rgba(122, 22, 176, 0.6);
}

.client-grid-label {
  padding: 0.55rem 0.6rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(122, 22, 176, 0.12), 0 6px 14px rgba(122, 22, 176, 0.08);
  margin-top: 0.4rem;
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.client-grid-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3e1a57;
}

.client-grid-desc {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(62, 26, 87, 0.7);
  margin-top: 0.25rem;
}

/* Right Panel - Login Form */
.login-right-panel {
  width: 34%;
  min-height: 100vh;
  background: #f0e6f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.login-card-wrapper {
  width: 100%;
  max-width: 380px;
}

.login-card {
  background: #dac5ff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 15px 50px rgba(122, 22, 176, 0.15);
}

.login-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-logo-wrapper {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.login-header-logo {
  max-width: 150px;
  height: auto;
}

.login-subtitle {
  font-size: 0.9rem;
  color: #5a4a6e;
  margin: 0;
}

.login-form .form-group {
  margin-bottom: 1rem;
}

.login-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3a2255;
  margin-bottom: 0.4rem;
}

.login-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(122, 22, 176, 0.2);
  border-radius: 12px;
  font-size: 0.95rem;
  background: #fff;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.login-form .form-control:focus {
  outline: none;
  border-color: #7a16b0;
  box-shadow: 0 0 0 3px rgba(122, 22, 176, 0.1);
}

.login-form .form-control::placeholder {
  color: #9a8aad;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #3a2255;
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #7a16b0;
}

.forgot-password {
  color: #7a16b0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.forgot-password:hover {
  color: #5a0d8a;
}

.btn-login-submit {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, #7a16b0 0%, #941ad3 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(122, 22, 176, 0.3);
}

.btn-login-submit:hover {
  background: linear-gradient(135deg, #8a1cc8 0%, #a42ae3 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 22, 176, 0.4);
}

.login-social {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(122, 22, 176, 0.15);
  text-align: center;
}

.login-social-card {
  background: #dac5ff;
  border-radius: 24px;
  padding: 1.25rem 2rem;
  margin-top: 1rem;
  box-shadow: 0 15px 50px rgba(122, 22, 176, 0.15);
  text-align: center;
}

.social-label {
  font-size: 0.85rem;
  color: #5a4a6e;
  margin: 0 0 0.75rem;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a4a6e;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #7a16b0;
  color: #fff;
  transform: translateY(-2px);
}

.login-footer-text {
  text-align: center;
  font-size: 0.8rem;
  color: #8a8a9a;
  margin-top: 1.5rem;
}

/* Responsive Styles for Split Login */
@media (max-width: 1200px) {
  .login-left-panel {
    width: 60%;
    padding: 2rem;
  }
  
  .login-right-panel {
    width: 40%;
  }
  
  .slide-title-large {
    font-size: 2.75rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .login-left-panel {
    width: 100%;
    padding: 1.5rem;
  }

  .slide-content {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.75rem;
  }

  .slide-text-section {
    max-width: 100%;
  }

  .slide-title-large {
    font-size: 2.3rem;
  }

  .slide-description {
    font-size: 0.95rem;
  }

  .slide-image-section {
    width: 100%;
    justify-content: center;
  }

  .slide-image-wrapper {
    width: 100%;
  }

  .slide-image-wrapper img {
    height: 220px;
  }

  .slide-stats {
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.25rem;
  }

  .stat-card {
    padding: 1.25rem;
  }
}

@media (max-width: 991px) {
  .login-split-container {
    flex-direction: column;
  }
  
  .login-left-panel {
    width: 100%;
    min-height: auto;
    padding: 5rem 1.5rem 2rem;
  }
  
  .login-right-panel {
    width: 100%;
    min-height: auto;
    padding: 2rem 1.25rem 3rem;
  }
  
  .login-left-logo {
    top: 1rem;
    left: 1rem;
  }
  
  .login-carousel-dots {
    top: 1rem;
    right: 1rem;
  }
  
  .carousel-dot {
    width: 32px;
    height: 32px;
  }
  
  .slide-content {
    flex-direction: column;
    text-align: center;
  }
  
  .slide-text-section {
    max-width: 100%;
  }
  
  .slide-divider {
    margin: 0 auto 1rem;
  }
  
  .slide-image-section {
    max-width: 100%;
  }
  
  .slide-stats {
    flex-direction: column;
  }
  
  .slide-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .login-left-logo .logo-text {
    font-size: 1.25rem;
  }
  
  .login-left-logo .logo-icon {
    width: 36px;
    height: 36px;
  }
  
  .slide-title-large {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .slide-clients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .client-grid-card {
    padding: 1rem;
  }
  
  .login-card {
    padding: 1.5rem;
  }
}