/* Custom CSS Design System - Business Women Platform (منصة سيدات الأعمال) */
/* File: assets/css/style.css */

:root {
    --primary-plum: #2A0B35;
    --primary-plum-light: #4E1A63;
    --primary-plum-dark: #1A0522;
    
    --accent-gold: #D4A373;
    --accent-gold-hover: #C59262;
    --accent-gold-light: #F4EAE1;
    
    --bg-light: #FAF9F6;
    --bg-white: #FFFFFF;
    --text-dark: #333333;
    --text-muted: #777777;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(42, 11, 53, 0.08);
    --shadow-lg: 0 15px 40px rgba(42, 11, 53, 0.15);
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 30px;
}

/* Global Elements */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Tajawal', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary-plum-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--accent-gold);
}

/* Typography Custom Styling */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-plum);
    font-weight: 700;
}

/* Premium Navbar Style */
.main-navbar {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 163, 115, 0.15);
    padding: 15px 0;
    transition: var(--transition-smooth);
    z-index: 1000;
}
.brand-icon {
    color: var(--accent-gold);
    font-size: 1.5rem;
    vertical-align: middle;
}
.brand-text {
    font-weight: 900;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, var(--primary-plum), var(--primary-plum-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.navbar-nav .nav-link {
    color: var(--primary-plum);
    font-weight: 500;
    padding: 8px 15px !important;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 15px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}
[dir="rtl"] .navbar-nav .nav-link::after {
    left: auto;
    right: 15px;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-gold-hover) !important;
}

/* Custom Buttons */
.btn-login {
    color: var(--primary-plum);
    border: 1px solid var(--primary-plum);
    border-radius: var(--radius-sm);
    font-weight: 500;
    padding: 6px 18px;
    background: transparent;
}
.btn-login:hover {
    background-color: var(--primary-plum);
    color: var(--bg-white);
}

.btn-register {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    padding: 7px 20px;
    box-shadow: var(--shadow-sm);
}
.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
    color: var(--bg-white);
}

.btn-outline-lang {
    color: var(--primary-plum-light);
    border-color: rgba(78, 26, 99, 0.3);
    border-radius: var(--radius-sm);
}
.btn-outline-lang:hover {
    background-color: var(--primary-plum-light);
    color: var(--bg-white);
    border-color: var(--primary-plum-light);
}

.btn-admin {
    background-color: var(--primary-plum-light);
    color: var(--bg-white);
    border-radius: var(--radius-sm);
}
.btn-admin:hover {
    background-color: var(--primary-plum-dark);
    color: var(--bg-white);
}

.btn-member {
    background-color: var(--primary-plum);
    color: var(--bg-white);
    border-radius: var(--radius-sm);
}
.btn-member:hover {
    background-color: var(--primary-plum-light);
    color: var(--bg-white);
}

/* Main Content Wrapper */
.main-content-wrapper {
    min-height: 70vh;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at 10% 20%, rgba(26, 5, 34, 0.95) 0%, rgba(42, 11, 53, 0.98) 90%);
    color: var(--bg-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--accent-gold);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}
.hero-image-container {
    position: relative;
    z-index: 10;
}
.hero-image, .hero-carousel {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(212, 163, 115, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
    overflow: hidden;
}
[dir="rtl"] .hero-image, [dir="rtl"] .hero-carousel {
    transform: perspective(1000px) rotateY(5deg);
}
.hero-image:hover, .hero-carousel:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}
.hero-carousel .carousel-item img {
    height: 420px;
    object-fit: cover;
    width: 100%;
}

/* Premium Card Designs */
.premium-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 163, 115, 0.1);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
}
.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 163, 115, 0.3);
}
.premium-card-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: var(--transition-smooth);
}
.premium-card:hover .premium-card-img {
    transform: scale(1.05);
}
.premium-card-body {
    padding: 25px;
}
.premium-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.premium-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Statistics Counter Section */
.stats-section {
    background-color: var(--primary-plum-dark);
    color: var(--bg-white);
    padding: 60px 0;
    margin-top: -50px;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 20;
    box-shadow: var(--shadow-lg);
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 5px;
}
.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Us Section styling */
.contact-info-box {
    background: linear-gradient(135deg, var(--primary-plum), var(--primary-plum-light));
    color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    height: 100%;
}
.contact-info-box h3, .contact-info-box h5, .contact-info-box p {
    color: var(--bg-white);
}
.contact-info-box .social-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
}
.contact-info-box .social-icon:hover {
    background-color: var(--accent-gold);
}

/* Footer Section */
.main-footer {
    background-color: var(--primary-plum-dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 5px solid var(--accent-gold);
}
.footer-title {
    color: var(--bg-white);
    font-size: 1.5rem;
}
.footer-sub-title {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}
.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}
[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}
.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.footer-contact i {
    color: var(--accent-gold);
    width: 25px;
    font-size: 1.1rem;
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}
.social-icon:hover {
    background-color: var(--accent-gold);
    color: var(--bg-white);
    transform: translateY(-3px);
}
.social-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.social-icon:hover img {
    transform: scale(1.15);
}
.footer-hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}
.copyright-text, .developer-text {
    font-size: 0.85rem;
}

/* Glassmorphism Auth Forms */
.auth-container {
    max-width: 500px;
    margin: 60px auto;
}
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}
.form-control, .form-select {
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(42, 11, 53, 0.15);
    transition: var(--transition-smooth);
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
    border-color: var(--accent-gold);
}
.form-label {
    font-weight: 500;
    color: var(--primary-plum);
}

/* Dashboard Sidebar and Layout */
.dashboard-sidebar {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 163, 115, 0.15);
    padding: 20px 0;
}
.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: var(--primary-plum);
    font-weight: 500;
    border-left: 4px solid transparent;
    transition: var(--transition-smooth);
}
[dir="rtl"] .sidebar-link {
    border-left: none;
    border-right: 4px solid transparent;
}
.sidebar-link i {
    width: 25px;
    font-size: 1.15rem;
    color: var(--accent-gold);
}
.sidebar-link:hover, .sidebar-link.active {
    background-color: var(--accent-gold-light);
    color: var(--primary-plum-light);
    border-left-color: var(--primary-plum-light);
}
[dir="rtl"] .sidebar-link:hover, [dir="rtl"] .sidebar-link.active {
    border-left-color: transparent;
    border-right-color: var(--primary-plum-light);
}

/* Certificate Preview Styling */
.certificate-preview-container {
    background-color: #333;
    padding: 40px 10px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

/* Premium Certificate Template layout */
.certificate-sheet {
    background-color: #fff;
    width: 800px;
    height: 565px;
    border: 15px double var(--primary-plum);
    padding: 40px;
    position: relative;
    color: var(--primary-plum-dark);
    font-family: 'Tajawal', sans-serif;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.certificate-sheet::before {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 2px solid var(--accent-gold);
    pointer-events: none;
}
.cert-header {
    text-align: center;
}
.cert-logo {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}
.cert-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 15px 0 5px 0;
    letter-spacing: 1px;
}
.cert-subtitle-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}
.cert-body {
    text-align: center;
    margin: 30px 0;
}
.cert-member-title {
    font-size: 1rem;
    color: var(--text-muted);
}
.cert-member-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-plum-light);
    margin: 10px 0;
    border-bottom: 2px solid var(--accent-gold-light);
    display: inline-block;
    padding: 0 40px 5px 40px;
}
.cert-meta-info {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    margin-top: 30px;
}
.cert-meta-col {
    text-align: center;
}
.cert-meta-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.cert-meta-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-plum);
}
.cert-signature-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 40px;
    margin-top: 15px;
}
.cert-signature-block {
    text-align: center;
}
.cert-signature-img {
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
    opacity: 0.85;
}
.cert-signature-line {
    width: 150px;
    height: 1px;
    background-color: var(--primary-plum);
    margin: 5px auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* CardNav Navigation Bar Custom Styling */
.card-nav-container {
  position: absolute;
  top: 2em;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  z-index: 99;
  box-sizing: border-box;
}

.card-nav {
  display: block;
  height: 60px;
  padding: 0;
  background-color: white;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible;
  will-change: height;
}

.card-nav-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.45rem 0.55rem 1.1rem;
  z-index: 2;
}

.hamburger-menu {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 6px;
  width: 30px;
}

.hamburger-menu:hover .hamburger-line {
  opacity: 0.75;
}

.hamburger-line {
  width: 30px;
  height: 2px;
  background-color: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    margin 0.3s ease;
  transform-origin: 50% 50%;
}

.hamburger-menu.open .hamburger-line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.hamburger-menu.open .hamburger-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.logo-container {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo {
  height: 28px;
}

.card-nav-cta-button {
  background-color: #111;
  color: white;
  border: none;
  border-radius: calc(0.75rem - 0.35rem);
  padding: 0 1rem;
  height: 100%;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-items: center;
}

.card-nav-cta-button:hover {
  background-color: #333;
}

.card-nav-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  bottom: 0;
  padding: 0.5rem;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

.card-nav.open .card-nav-content {
  visibility: visible;
  pointer-events: auto;
}

.nav-card {
  height: 100%;
  flex: 1 1 0;
  min-width: 0;
  border-radius: calc(0.75rem - 0.2rem);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  gap: 8px;
  user-select: none;
}

.nav-card-label {
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.nav-card-links {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-card-link {
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-card-link:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .card-nav-container {
    width: 95%;
    top: 1.2em;
  }

  .card-nav-top {
    padding: 0.5rem 1rem;
    justify-content: space-between;
  }

  .hamburger-menu {
    order: 2;
  }

  .logo-container {
    position: static;
    transform: none;
    order: 1;
  }

  .card-nav-cta-button {
    display: none;
  }

  .card-nav-content {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0.5rem;
    bottom: 0;
    justify-content: flex-start;
  }

  .nav-card {
    height: auto;
    min-height: 60px;
    flex: 1 1 auto;
    max-height: none;
  }

  .nav-card-label {
    font-size: 18px;
  }

  .nav-card-link {
    font-size: 15px;
  }
}

/* Premium Vision & Mission Card Styles */
.vm-card {
    position: relative;
    border: 1px solid rgba(78, 26, 99, 0.08);
    background: linear-gradient(135deg, #ffffff, #faf8f5);
    box-shadow: 0 10px 30px rgba(78, 26, 99, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}
.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(78, 26, 99, 0.12);
    border-color: rgba(212, 163, 115, 0.4);
}
.vm-card:hover .vm-blob {
    transform: scale(1.4);
    background: rgba(212, 163, 115, 0.18);
}
.vm-card:hover .icon-box {
    transform: rotate(5deg) scale(1.08);
    box-shadow: 0 12px 24px rgba(78, 26, 99, 0.35);
}
.vm-card:hover .vm-arrow {
    transform: translateX(6px);
    opacity: 1;
}
[dir="rtl"] .vm-card:hover .vm-arrow {
    transform: translateX(-6px);
}

/* Gradual Blur Component */
.gradual-blur-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 6rem;
    pointer-events: none;
    isolation: isolate;
    z-index: 1;
}

.gradual-blur-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ChromaGrid and Spotlight Card layout */
.chroma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    gap: 1.5rem;
    --r: 300px;
    --x: 0px;
    --y: 0px;
    z-index: 10;
}

@media (max-width: 992px) {
    .chroma-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .chroma-grid {
        grid-template-columns: 1fr;
    }
}

.chroma-card {
    position: relative;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid rgba(212, 163, 115, 0.12);
    padding: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.chroma-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.chroma-card:hover .badge {
    background-color: var(--primary-plum-light) !important;
    color: #fff !important;
    transform: scale(1.08) rotate(5deg);
}

/* Chroma Card Border Glow Overlay */
.chroma-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: radial-gradient(
        220px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        var(--card-border, var(--accent-gold)),
        transparent 80%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.chroma-card:hover::after {
    opacity: 1;
}

/* Background spotlight reveal */
.chroma-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        var(--r, 300px) circle at var(--x, 0px) var(--y, 0px),
        rgba(212, 163, 115, 0.08),
        transparent 70%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.chroma-grid:hover .chroma-overlay {
    opacity: 1;
}

/* Custom Accessibility Focus Indicators */
.hamburger-menu:focus-visible,
.btn-notify-toggle:focus-visible,
.lang-switch-header:focus-visible,
.chroma-card:focus-visible,
.nav-card:focus-visible,
.btn:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-gold) !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.3) !important;
}

/* Floating Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-plum);
    color: var(--accent-gold) !important;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(26, 5, 34, 0.3);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[dir="rtl"] .back-to-top-btn {
    right: auto;
    left: 25px;
}

.back-to-top-btn:hover {
    background-color: var(--primary-plum-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
    color: #fff !important;
    border-color: #fff;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Custom Toast Notifications */
.bwc-toast {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -20px);
    background-color: var(--primary-plum-dark);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(26, 5, 34, 0.3);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 90%;
    width: auto;
    text-align: center;
}

.bwc-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.bwc-toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bwc-toast-icon {
    font-size: 1.15rem;
    color: var(--accent-gold);
}

.bwc-toast-message {
    font-size: 0.95rem;
    font-weight: 500;
}

.bwc-toast-action {
    font-size: 0.8rem;
    color: var(--accent-gold-light);
    text-decoration: underline;
    margin-top: 2px;
}

.bwc-toast-clickable:hover {
    background-color: var(--primary-plum-light);
    box-shadow: 0 12px 35px rgba(212, 163, 115, 0.3);
}

.bwc-toast-success .bwc-toast-icon {
    color: #2ec4b6;
}

.bwc-toast-error {
    border-color: #e63946;
}
.bwc-toast-error .bwc-toast-icon {
    color: #e63946;
}

.bwc-toast-warning {
    border-color: var(--accent-gold);
}
.bwc-toast-warning .bwc-toast-icon {
    color: var(--accent-gold);
}

/* MagicBento Component CSS */
.bento-section {
    position: relative;
    user-select: none;
}

.magic-bento-grid {
    display: grid;
    gap: 1rem;
    padding: 0.75rem 0;
    width: 100%;
}

.magic-bento-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 200px;
    width: 100%;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 163, 115, 0.15);
    background: var(--bg-white);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    z-index: 5;
    
    --glow-x: 50%;
    --glow-y: 50%;
    --glow-intensity: 0;
    --glow-radius: 300px;
}

.magic-bento-card:hover {
    box-shadow: 0 10px 30px rgba(78, 26, 99, 0.06);
    border-color: rgba(212, 163, 115, 0.4);
}

.magic-bento-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.magic-bento-card__label {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--accent-gold);
    background-color: var(--accent-gold-light);
    padding: 4px 12px;
    border-radius: 20px;
}

.magic-bento-card__content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    margin-top: auto;
}

.magic-bento-card__title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-plum);
    margin-bottom: 0.5rem;
}

.magic-bento-card__description {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Responsive grid layout */
@media (max-width: 767px) {
    .magic-bento-grid {
        grid-template-columns: 1fr;
    }
    .magic-bento-card {
        aspect-ratio: auto;
        min-height: 180px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .magic-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .magic-bento-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .magic-bento-card:nth-child(3) {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 420px;
    }

    .magic-bento-card:nth-child(4) {
        grid-column: 1 / span 2;
        grid-row: 2 / span 2;
    }

    .magic-bento-card:nth-child(6) {
        grid-column: 4;
        grid-row: 3;
    }
}

/* Border glow effect following the cursor */
.magic-bento-card--border-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: radial-gradient(
        var(--glow-radius) circle at var(--glow-x) var(--glow-y),
        rgba(212, 163, 115, calc(var(--glow-intensity) * 0.8)) 0%,
        rgba(212, 163, 115, calc(var(--glow-intensity) * 0.4)) 35%,
        transparent 70%
    );
    border-radius: inherit;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.magic-bento-card--border-glow:hover::after {
    opacity: 1;
}

/* Particle styling */
.magic-bento-card .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.magic-bento-card .particle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(212, 163, 115, 0.2);
    border-radius: 50%;
    z-index: -1;
}

/* Objectives Bento Grid Layout */
.objectives-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 992px) {
    .objectives-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .objectives-bento-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   Uiverse.io Star Burst Language Switch Button
   By MuhammadHasann
=================================================== */
.btn-lang-sparkle {
  position: relative;
  padding: 6px 20px;
  background: #fec195;
  font-size: 13.5px;
  font-weight: 600;
  color: #181818;
  border: 2px solid #fec195;
  border-radius: 8px;
  box-shadow: 0 0 0 #fec1958c;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  line-height: 1.2;
  z-index: 10;
  outline: none;
}

.btn-lang-sparkle .star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 22px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  pointer-events: none;
}

.btn-lang-sparkle .star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 14px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
  pointer-events: none;
}

.btn-lang-sparkle .star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
  pointer-events: none;
}

.btn-lang-sparkle .star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
  pointer-events: none;
}

.btn-lang-sparkle .star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 14px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
  pointer-events: none;
}

.btn-lang-sparkle .star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s ease;
  pointer-events: none;
}

.btn-lang-sparkle:hover {
  background: transparent;
  color: #1A0522;
  box-shadow: 0 0 25px #fec1958c;
  border-color: #fec195;
}

.btn-lang-sparkle:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 22px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef) drop-shadow(0 0 4px #fec195);
  z-index: 20;
}

.btn-lang-sparkle:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 14px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef) drop-shadow(0 0 4px #fec195);
  z-index: 20;
}

.btn-lang-sparkle:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef) drop-shadow(0 0 4px #fec195);
  z-index: 20;
}

.btn-lang-sparkle:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef) drop-shadow(0 0 4px #fec195);
  z-index: 20;
}

.btn-lang-sparkle:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 14px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef) drop-shadow(0 0 4px #fec195);
  z-index: 20;
}

.btn-lang-sparkle:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef) drop-shadow(0 0 4px #fec195);
  z-index: 20;
}

.btn-lang-sparkle .fil0,
.fil0 {
  fill: #fec195;
  transition: fill 0.3s ease;
}

.btn-lang-sparkle:hover .fil0 {
  fill: #fec195;
}

@media (max-width: 576px) {
  .btn-lang-sparkle {
    padding: 5px 12px;
    font-size: 12px;
  }
}

/* ===================================================
   From Uiverse.io by Tsiangana - Orbiting Social Media Hub
=================================================== */
.social-links-uiverse {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 35px auto 35px auto !important;
  position: relative !important;
  text-align: center !important;
}

.tooltip-container {
  background: rgb(3, 169, 244);
  background: linear-gradient(
    138deg,
    rgba(3, 169, 244, 1) 15%,
    rgba(63, 180, 233, 1) 65%
  );
  position: relative;
  cursor: pointer;
  font-size: 17px;
  padding: 0.7em 0.7em;
  border-radius: 50px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  box-sizing: border-box;
  z-index: 50;
}

.tooltip-container:hover {
  background: #fff;
  transition: all 0.6s;
  box-shadow: 0 0.5rem 1.5rem rgba(3, 169, 244, 0.35);
}

.tooltip-container .text {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff;
  color: #fff;
  font-size: 20px;
  transition: all 0.2s;
}

.tooltip-container:hover .text {
  fill: rgb(3, 169, 244);
  color: rgb(3, 169, 244);
  transition: all 0.6s;
}

/* Tooltip base satellite styles - Perfectly Centered & Symmetrical */
.tooltip1,
.tooltip2,
.tooltip3,
.tooltip4,
.tooltip5,
.tooltip6,
.tooltip7,
.tooltip8 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              opacity 0.25s ease, 
              visibility 0.25s ease, 
              background 0.3s ease, 
              color 0.3s ease, 
              box-shadow 0.3s ease;
  z-index: 60;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.3);
}

.tooltip-container:hover .tooltip1,
.tooltip-container:hover .tooltip2,
.tooltip-container:hover .tooltip3,
.tooltip-container:hover .tooltip4,
.tooltip-container:hover .tooltip5,
.tooltip-container:hover .tooltip6,
.tooltip-container:hover .tooltip7,
.tooltip-container:hover .tooltip8 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 1. Twitter / X (Bottom - 6:00) */
.tooltip1 {
  fill: #000;
  color: #000;
}
.tooltip-container:hover .tooltip1 {
  transform: translate(-50%, calc(-50% + 68px)) scale(1);
}
.tooltip-container:hover .tooltip1:hover {
  background: #000;
  fill: #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, calc(-50% + 68px)) scale(1.15);
}

/* 2. Instagram (Top - 12:00) */
.tooltip2 {
  fill: #e1306c;
  color: #e1306c;
}
.tooltip-container:hover .tooltip2 {
  transform: translate(-50%, calc(-50% - 68px)) scale(1);
}
.tooltip-container:hover .tooltip2:hover {
  background: #e1306c;
  fill: #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.45);
  transform: translate(-50%, calc(-50% - 68px)) scale(1.15);
}

/* 3. WhatsApp (Right - 3:00) */
.tooltip3 {
  fill: #1db954;
  color: #1db954;
}
.tooltip-container:hover .tooltip3 {
  transform: translate(calc(-50% + 68px), -50%) scale(1);
}
.tooltip-container:hover .tooltip3:hover {
  background: #1db954;
  fill: #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(29, 185, 84, 0.45);
  transform: translate(calc(-50% + 68px), -50%) scale(1.15);
}

/* 4. Phone (Left - 9:00) */
.tooltip4 {
  fill: #4E1A63;
  color: #4E1A63;
}
.tooltip-container:hover .tooltip4 {
  transform: translate(calc(-50% - 68px), -50%) scale(1);
}
.tooltip-container:hover .tooltip4:hover {
  background: #4E1A63;
  fill: #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(78, 26, 99, 0.45);
  transform: translate(calc(-50% - 68px), -50%) scale(1.15);
}

/* 5. Snapchat (Top-Left - 10:30) */
.tooltip5 {
  fill: #fffc00;
  color: #333;
}
.tooltip-container:hover .tooltip5 {
  transform: translate(calc(-50% - 48px), calc(-50% - 48px)) scale(1);
}
.tooltip-container:hover .tooltip5:hover {
  background: #fffc00;
  fill: #000;
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 252, 0, 0.5);
  transform: translate(calc(-50% - 48px), calc(-50% - 48px)) scale(1.15);
}

/* 6. LinkedIn (Top-Right - 1:30) */
.tooltip6 {
  fill: #0077b5;
  color: #0077b5;
}
.tooltip-container:hover .tooltip6 {
  transform: translate(calc(-50% + 48px), calc(-50% - 48px)) scale(1);
}
.tooltip-container:hover .tooltip6:hover {
  background: #0077b5;
  fill: #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.45);
  transform: translate(calc(-50% + 48px), calc(-50% - 48px)) scale(1.15);
}

/* 7. Email (Bottom-Right - 4:30) */
.tooltip7 {
  fill: #D4A373;
  color: #D4A373;
}
.tooltip-container:hover .tooltip7 {
  transform: translate(calc(-50% + 48px), calc(-50% + 48px)) scale(1);
}
.tooltip-container:hover .tooltip7:hover {
  background: #D4A373;
  fill: #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.45);
  transform: translate(calc(-50% + 48px), calc(-50% + 48px)) scale(1.15);
}

/* 8. Location (Bottom-Left - 7:30) */
.tooltip8 {
  fill: #ea4335;
  color: #ea4335;
}
.tooltip-container:hover .tooltip8 {
  transform: translate(calc(-50% - 48px), calc(-50% + 48px)) scale(1);
}
.tooltip-container:hover .tooltip8:hover {
  background: #ea4335;
  fill: #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.45);
  transform: translate(calc(-50% - 48px), calc(-50% + 48px)) scale(1.15);
}

/* 9. Hover Anchor Bridge */
.tooltip9 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.tooltip-container:hover .tooltip9 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}



