/* ================================
   Global Styles
   ================================ */
:root {
  --bg: #ffffff;
  --surface: #091e3e;
  --card: #091e3e;
  --primary: #0b1224;
  --primary-700: #1d4ed8;
  --secondary: #d0aa4b; /* Gold */
   --gold: #f1bf70;
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.1);
  --bg-light: #f7f0d9;
  --accent: #22c55e;
  --muted: #747576; 
  --text: #313131;
  --heading: #f8fafc;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.149);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
 font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a {
  color: #f7f0d9;
  text-decoration: none;
}
img { max-width: 100%; display: block; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* Sections */
.section { padding: 5rem 0; }
.section h2 { color: var(--heading); font-size: 2rem; margin-bottom: 1.5rem; text-align: center; color:#d0aa4b; }
.section h5 { color: var(--surface); font-size: 1rem; margin-bottom: 1.5rem; text-align: start; }
.section p { 
  color: var(--muted); 
  max-width: 700px; 
  margin: 0 auto 2rem; 
  text-align: center; 
  font-size: 1.2rem;}

.p {
  font-size: 1.1rem;
}

/* Cards grid */
.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Buttons */
.btn { display:inline-flex; align-items:center; gap:.6rem; padding:.7rem 1.2rem; border-radius:999px; font-weight:600; border:1px solid transparent; cursor:pointer; transition:.2s ease; }
.btn-primary { background: #d0aa4b; color:#000; box-shadow: var(--shadow); }
.btn-primary:hover { filter:brightness(1.05); transform:translateY(-1px); }
.btn-secondary { background: #091e3e; color:#fff; box-shadow: var(--shadow); }
.btn-secondary:hover { filter:brightness(1.05); transform:translateY(-1px); }
.btn-ghost { background:rgba(255,255,255,.04); border:1px solid rgba(255, 255, 255, 0.614); color:var(--secondary); }
.btn-ghost:hover { background:#091e3e; color:var(--secondary); transform:translateY(-1px); }

.chip { 
  display:inline-flex; 
  align-items:center;
  gap:.4rem; padding:.35rem .6rem;
  border-radius:999px; 
  background:rgba(241,191,112,.1); 
  border:1px solid rgba(241,191,112,.2); 
  color:var(--secondary); font-size:.85rem;
 }

.card { 
  background: var(--bg-light);
  border:1px solid rgba(255,255,255,.08); 
  border-radius:var(--radius); 
  box-shadow:var(--shadow); 
  padding:1.5rem;
}

/* ================================
   Header / Navbar
   ================================ */
header { position:sticky; top:0; z-index:100; padding: .5rem 0; }
.nav { display:flex; align-items:center; justify-content:space-between; padding:.8rem 1rem; background: #0f172a; border-radius:50px; border:1px solid rgba(255,255,255,.08);}
.brand { display:flex; align-items:center; font-weight:800; color:var(--secondary); }
.brand .logo { width:36px; height:36px; border-radius:10px; background: conic-gradient(from 140deg, var(--primary), var(--secondary)); display:grid; place-items:center; box-shadow:var(--shadow); }
.menu { display:flex; align-items:center; gap:1rem; }
.menu a { padding:.6rem .8rem; border-radius:10px; color:var(--muted); font-weight:500; }
.menu a:hover { background:rgba(241,191,112,.15); color:var(--secondary); }
.menu a:active { color: var(--card);}

/* Hamburger */
.menu-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; }
.menu-toggle span { width:24px; height:3px; background:var(--secondary); border-radius:2px; transition:.3s; }

/* ================================
   Nested dropdown (desktop hover)
   ================================ */
.dropdown-submenu > .dropdown-menu {
  display: none;             /* hidden by default */
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: -0.4rem;
  min-width: 220px;
  z-index: 1060;
  /* subtle default look for nested menu (overrides later on desktop) */
  background-color: rgba(30,35,45,0.96);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* show nested when hovering parent (desktop) */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* ============================
   Nav layout & CTA alignment
   ============================ */
.nav {
  position: relative; /* anchor for absolute CTA */
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1rem;
  background: rgb(15, 23, 42);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.08);
}

/* hamburger hidden by default (desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  transition: .3s;
}

/* base dropdown item appearance */
.dropdown-item {
  color: var(--text);
  font-weight: 500;
  padding: .55rem 1rem;
  transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(241,191,112,0.12);
  color: var(--secondary);
}

/* -------------------------
   DESKTOP (>= 992px)
   ------------------------- */
@media (min-width: 992px) {
  /* center the links and allow .menu to grow */
  .menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -150px;
  }

  .menu .navbar-nav {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  /* link look on desktop */
  .menu .nav-link,
  .menu a {
    color: var(--muted);
    padding: .55rem .9rem;
    border-color: #d0aa4b42;
    border-radius: 25px;
    transition: background .18s, color .18s, transform .12s;
  }
  .menu .nav-link:hover,
  .menu a:hover {
    background: rgba(241,191,112,0.12);
    color: var(--secondary);
  }

  /* Pin 'Login' to right edge of .nav */
  .nav .btn-ghost {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2200;
    margin-right: -20px;
  }

  /* If the CTA is inside UL, pull it out of flow */
  .menu .navbar-nav .btn-ghost {
    display: inline-flex;
    position: absolute;
  }

  /* Desktop nested menu style differentiation */
  .dropdown-menu {
    background-color: var(--card);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }

  /* Submenu container */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu > .dropdown-menu {
    background-color: rgba(30,35,45,0.96);
    border: 1px solid rgba(241,191,112,0.12);
  }

  /* SUBMENU INDENTATION (desktop) */
  /* Indent only those items that are inside a .dropdown-submenu */
  .dropdown-submenu .dropdown-item {
    padding-left: 1.5rem;   /* visual indent for nested links */
    font-size: 0.95rem;
  }

  /* deeper nesting (level 3) */
  .dropdown-submenu .dropdown-submenu .dropdown-item {
    padding-left: 2.4rem;
  }
}

/* -------------------------
   MOBILE (<= 991px)
   ------------------------- */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
    z-index: 2100;
  }

  /* mobile curtain menu */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 550px;                 /* expands as it grows */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1.8rem 1.25rem;
    gap: 0.5rem;
    transform: translateY(-110%);
    transition: transform 0.35s ease-in-out;
    border-radius: 0 0 18px 18px;
    z-index: 2000;

    overflow: visible; /* allow menu to grow - no internal scroller */
    height: auto;
  }
  .menu.show { transform: translateY(0); }

  /* stack nav items */
  .menu .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    width: 100%;
    padding-left: 0;
    margin: 0;
  }

  /* remove permanent per-link background on mobile; keep hover */
  .menu .nav-link,
  .menu a {
    background: transparent;
    color: var(--bg-light);
    padding: .9rem 1rem;
    border-radius: 8px;
    width: 100%;
    text-align: left;
  }
  .menu .nav-link:hover,
  .menu a:hover {
    background: rgba(241,191,112,0.12);
    color: var(--secondary);
  }

  /* Mobile dropdowns should expand inline (static positioning) */
  .menu .dropdown-menu {
    position: static;
    width: 100%;
    background: rgba(255, 242, 203, 0.05);
    border: none;
    box-shadow: none;
    padding-left: 0;
    margin-top: 0;
    display: none;   /* hidden by default */
  }
  .menu .dropdown-menu.show {
    display: block;  /* toggled by JS */
  }

  /* ensure direct dropdown toggles are full width */
  .menu .dropdown-toggle {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
  }

    /* Desktop nested menu style differentiation */
  .dropdown-menu {
    background-color: var(--card);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }
  
  .dropdown-submenu > .dropdown-menu {
    background-color: rgba(30,35,45,0.96);
    border: 1px solid rgba(241,191,112,0.12);
  }

  /* SUBMENU INDENTATION (mobile) */
  /* indent nested items inside the curtain menu */
  .menu .dropdown-submenu .dropdown-item {
    padding-left: 1.75rem;
    font-size: 0.96rem;
  }
  .menu .dropdown-submenu .dropdown-submenu .dropdown-item {
    padding-left: 2.6rem;
  }

  /* Make CTA part of the flow on mobile with spacing */
  .nav .btn-ghost,
  .menu .btn-ghost {
    position: static;
    align-self: stretch;
    margin-top: 1rem;
    display: inline-flex;
    justify-content: center;
  }
}

/* ==============================
   General submenu indentation fallback (extra specificity)
   ============================== */
/* This selector targets any .dropdown-item that is descendant of .dropdown-submenu
   and ensures indentation even if other rules are more specific elsewhere. */
.nav .dropdown-submenu .dropdown-item {
  padding-left: 1.5rem;
}

/* deeper fallback */
.nav .dropdown-submenu .dropdown-submenu .dropdown-item {
  padding-left: 2.4rem;
}

/* Accessibility / touch highlight fix */
.menu .nav-link,
.menu a,
.dropdown-item {
  -webkit-tap-highlight-color: transparent;
}

/* Wall of Love Link Styling */
.Wall-of-love-link {
    padding: 0.5rem 1.2rem !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    background: linear-gradient(135deg, rgba(208, 170, 75, 0.1) 0%, rgba(208, 170, 75, 0.05) 100%) !important;
    border: 1px solid rgba(208, 170, 75, 0.2) !important;
    position: relative !important;
    margin: 0 0.3rem !important;
}

.Wall-of-love-text {
    color: var(--secondary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    z-index: 2 !important;
    transition: color 0.3s ease !important;
    display: inline-block !important;
    padding-right: 1.8rem !important;
}

/* Animated Border Effect */
.link-border {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 30px !important;
    border: 2px solid transparent !important;
    background: linear-gradient(90deg, var(--secondary), #ff6b9d, var(--secondary)) border-box !important;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    animation: borderRotate 3s linear infinite paused !important;
}

@keyframes borderRotate {
    0% {
        background: linear-gradient(90deg, var(--secondary), #ff6b9d, var(--secondary)) border-box !important;
    }
    25% {
        background: linear-gradient(180deg, var(--secondary), #ff6b9d, var(--secondary)) border-box !important;
    }
    50% {
        background: linear-gradient(270deg, var(--secondary), #ff6b9d, var(--secondary)) border-box !important;
    }
    75% {
        background: linear-gradient(360deg, var(--secondary), #ff6b9d, var(--secondary)) border-box !important;
    }
    100% {
        background: linear-gradient(450deg, var(--secondary), #ff6b9d, var(--secondary)) border-box !important;
    }
}

/* Stars and Heart Styling */
.love-stars {
    position: absolute !important;
    top: 50% !important;
    right: 0.8rem !important;
    transform: translateY(-50%) !important;
    z-index: 3 !important;
}

.love-star {
    position: absolute !important;
    color: var(--secondary) !important;
    font-size: 0.6rem !important;
    opacity: 0 !important;
    transition: all 0.5s ease !important;
}

.love-star.star-1 {
    top: -8px !important;
    right: 0 !important;
    animation: starTwinkle 2s infinite !important;
}

.love-star.star-2 {
    bottom: -8px !important;
    right: -5px !important;
    animation: starTwinkle 2s infinite 0.5s !important;
}

.love-heart {
    color: #ff6b9d !important;
    font-size: 0.7rem !important;
    animation: heartbeat 1.5s ease-in-out infinite !important;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.7 !important;
        transform: scale(1) rotate(0deg) !important;
    }
    50% {
        opacity: 1 !important;
        transform: scale(1.2) rotate(180deg) !important;
        color: #ffd166 !important;
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1) !important;
    }
    25% {
        transform: scale(1.1) !important;
    }
    50% {
        transform: scale(1) !important;
    }
    75% {
        transform: scale(1.05) !important;
    }
}

/* Hover Effects */
.Wall-of-love-link:hover {
    background: linear-gradient(135deg, rgba(208, 170, 75, 0.15) 0%, rgba(208, 170, 75, 0.08) 100%) !important;
    border-color: rgba(208, 170, 75, 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(208, 170, 75, 0.2) !important;
}

.Wall-of-love-link:hover .link-border {
    opacity: 1 !important;
    animation-play-state: running !important;
}

.Wall-of-love-link:hover .love-star {
    opacity: 1 !important;
}

.Wall-of-love-link:hover .love-heart {
    animation-duration: 1s !important;
}

.Wall-of-love-link:hover .Wall-of-love-text {
    color: #ff6b9d !important;
    text-shadow: 0 0 10px rgba(255, 107, 157, 0.3) !important;
}

/* Active/Current Page State */
.Wall-of-love-link.active {
    background: linear-gradient(135deg, var(--secondary) 0%, #e6b050 100%) !important;
    border-color: var(--secondary) !important;
}

.Wall-of-love-link.active .Wall-of-love-text {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

.Wall-of-love-link.active .link-border {
    opacity: 0.7 !important;
    animation-play-state: running !important;
    background: linear-gradient(90deg, white, #ffd1dc, white) border-box !important;
}

.Wall-of-love-link.active .love-star {
    color: white !important;
    opacity: 1 !important;
}

.Wall-of-love-link.active .love-heart {
    color: #ffd1dc !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .Wall-of-love-link {
        padding: 0.4rem 1rem !important;
        margin: 0.2rem 0 !important;
    }
    
    .Wall-of-love-text {
        padding-right: 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .love-stars {
        right: 0.6rem !important;
    }
    
    .love-star {
        font-size: 0.5rem !important;
    }
    
    .love-heart {
        font-size: 0.6rem !important;
    }
}

/* ================================
   Hero Carousel (Bootstrap override)
   ================================ */

.logo-img {
  height: 40px;     /* adjust as needed */
  width: auto;      /* keep aspect ratio */
  display: inline-block;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;   /* full width */
  padding: 0;
}

/* Responsive height: 100vh on large screens, auto on small screens */
@media (min-width: 992px) { /* Large screens */
  .hero {
    height: 100vh;
  }
}

@media (max-width: 991.98px) { /* Small/medium screens */
  .hero {
    height: auto;
    min-height: 400px; /* Optional: set a minimum height for smaller screens */
  }
}

.hero-bg-video {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full coverage */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.55); /* dark overlay for readability */
  z-index: 1;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  position: relative;
  z-index: 2; /* content above video */
}

/* Adjust carousel height based on screen size */
@media (min-width: 992px) {
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 100vh;
  }
}

@media (max-width: 991.98px) {
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: auto;
  }
}

.hero .carousel-item > .container {
  height: 100%; /* container spans full height */
  display: flex;
  align-items: center; /* vertically center content */
  margin-top: -30px;
}

/* Responsive adjustment for container height */
@media (max-width: 991.98px) {
  .hero .carousel-item > .container {
    height: auto;
    min-height: 400px; /* Match the hero min-height */
    padding: 60px 0; /* Add vertical padding for better spacing */
  }
}

.hero-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

/* Responsive adjustment for hero-inner layout */
@media (max-width: 991.98px) {
  .hero-inner {
    grid-template-columns: 1fr; /* Stack content on smaller screens */
    text-align: center;
    gap: 1.5rem;
  }
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 .6rem;
  color: var(--heading);
}

.hero p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
}

/* Add to resources/css/style.css */
.hero-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* Bootstrap carousel control overrides */
#heroCarousel {
  position: relative;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 100; /* Higher z-index to ensure controls are on top */
  width: 8%; /* Wider control area */
  opacity: 0.8;
  color: var(--secondary);
}

.carousel-control-prev {
  left: -2%; /* Extend further to the left edge */
}

.carousel-control-next {
  right: -2%; /* Extend further to the right edge */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(80%) sepia(60%) saturate(400%) hue-rotate(15deg);
  width: 3rem; /* Larger icons */
  height: 3rem; /* Larger icons */
}

/* Ensure carousel indicators are also on top */
.carousel-indicators {
  z-index: 99;
}
.hero .carousel-item > .container {
  height: 100%; /* container spans full height */
  display: flex;
  align-items: center; /* vertically center content */
}

/* ================================
   About Us
   ================================ */

/* Dynamic mesh + curved-lines background for hero */
.about-hero {
  height: 48vh;
  position: relative;
  margin-top: -85px;
  margin-bottom: -30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #091e3e; /* fallback color */
}

/* Animated gradient blobs (mesh) */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(241,191,112,0.36), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(56,189,248,0.22), transparent 55%),
    radial-gradient(circle at 52% 78%, rgba(139,92,246,0.20), transparent 55%),
    radial-gradient(circle at 92% 70%, rgba(15,23,42,0.85), transparent 78%),
    #0f172a; /* base fallback */
  mix-blend-mode: screen;
  animation: meshShift 18s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

/* Curved lines overlay — SVG embedded as base64 to avoid encoding issues */
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* base64-encoded SVG (curved lines). This avoids browser parsing problems. */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNDQwIDYwMCcgcHJlc2VydmVBc3BlY3RSYXRpbz0neE1pZEd5TWlkIHNsaWNlJz4gPHBhdGggZD0nTTAsMzIwIEM0ODAsNDAwIDk2MCwyNDAgMTQ0MCwzMjAnIGZpbGw9J25vbmUnIHN0cm9rZT0ncmdiYSgyNDEsMTkxLDExMiwwLjI1KScgc3Ryb2tlLXdpZHRoPScyJy8+IDxwYXRoIGQ9J00wLDQwMCBDNDgwLDQ4MCA5NjAsMzIwIDE0NDAsNDAwJyBmaWxsPSdub25lJyBzdHJva2U9J3JnYmEoNTYsMTg5LDI0OCwwLjIpJyBzdHJva2Utd2lkdGg9JzEuNScvPiA8cGF0aCBkPSdNMCw1MDAgQzQ4MCw1ODAgOTYwLDQyMCAxNDQwLDUwMCcgZmlsbD0nbm9uZScgc3Ryb2tlPSdyZ2JhKDEzOSw5MiwyNDYsMC4yKScgc3Ryb2tlLXdpZHRoPScxLjUnLz4gPC9zdmc+");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  z-index: 1;
  pointer-events: none;
}

/* make sure text sits above effects */
.about-hero .container {
  position: relative;
  z-index: 2;
}

/* animate gradient blob positions for subtle motion */
@keyframes meshShift {
  0% {
    background-position: 18% 28%, 80% 20%, 52% 78%, 92% 70%;
  }
  100% {
    background-position: 22% 34%, 76% 24%, 56% 74%, 86% 66%;
  }
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* overlay for readability */
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2; /* ensures text appears above overlay */
  color: #fff;
}

.contact-cta-inner {
  background: rgba(0, 0, 0, 0.427); /* blackish transparent */
  border: 1px solid rgba(241, 191, 112, 0.4); /* subtle secondary color border */
  backdrop-filter: blur(6px); /* glassy effect */
}

/* Contact Info Enhancements */
.contact-info {
  flex-wrap: wrap;
}

.info-box {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(241, 191, 112, 0.3); /* subtle secondary border */
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05); /* soft glassy look */
  transition: transform 0.2s, background 0.2s;
}

.info-box:hover {
  transform: translateY(-2px);
  background: rgba(241, 191, 112, 0.08);
}

.icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(241, 191, 112, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d0aa4b;
  font-size: 1rem;
  flex-shrink: 0;
}
  
/* Glowing CTA button */
.btn-glow {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--secondary);
  border-radius: 50px;
  font-weight: 600;
  color: var(--secondary); /* visible text */
  background: transparent; /* keep background see-through */
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s, background 0.3s;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(241, 191, 112, 0.7),
    transparent
  );
  background-size: 200% 200%;
  animation: glow-move 2s linear infinite;
  z-index: -1;
}

@keyframes glow-move {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.btn-glow:hover {
  background: var(--secondary);
  color: #111; /* readable text when filled */
}


@keyframes rotate-glow {
  to {
    transform: rotate(360deg);
  }
}

/* ================================
   Wall of love
   ================================ */
.responsive-iframe-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: -50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: #f8f9fa;
}

.responsive-iframe-wrapper iframe {
  width: 100%;
  border: 0;
  display: block;
}

/* Large screens */
@media (min-width: 992px) {
  .responsive-iframe-wrapper iframe {
    height: 800px;
  }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 991px) {
  .responsive-iframe-wrapper iframe {
    height: 700px;
  }
}

/* Small screens */
@media (max-width: 767px) {
  .responsive-iframe-wrapper iframe {
    height: 700px;
  }
}

/* Extra small screens */
@media (max-width: 575px) {
  .responsive-iframe-wrapper iframe {
    height: 500px;
  }
}

/* ================================
   Services / Cards
   ================================ */
 /* Services */
    .section { padding: 3.5rem 0; }
    .section h2 { 
    font-size: clamp(1.6rem, 3vw, 2.5rem); 
    color: var(--secondary); 
    margin: 0 0 .6rem; 
    font-weight: 700; /* Bold */
    letter-spacing: -0.5px; /* optional: slight tightening for elegance */
  }

    .section .lead { color: var(--surface); margin: 0 0 2rem; }
    .service { padding: 1.25rem; display:grid; gap:.7rem; }
    .service h4 { margin:0; font-size: 1.05rem; color: var(--surface); font-size: 1.5rem;}
    .service p { margin:0; color: var(--muted); font-size: .98rem; text-align: left;}

/* ================================
   Why Choose Us
   ================================ */
.checked {
  position: relative;
  background: #d5ecff; /* light blue */
  overflow: hidden;
  color: #0f172a;
}

/* Gold crossing lines background */
.checked::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: 
    linear-gradient(to right, rgba(241, 191, 112, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(241, 191, 112, 0.2) 1px, transparent 1px);
  background-size: 30px 30px; /* adjust box size */
  pointer-events: none;
  z-index: 0;
}

/* Content above the grid */
.checked .container {
  position: relative;
  z-index: 1;
}

/* Feature cards */
.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
}

/* Icons */
.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary); /* gold */
}

.feature-icon-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #d0aa4b;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(208,170,75,0.08);
}


.process-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25); /* Blue glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
  }

  .cta-glow {
    position: relative;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    overflow: hidden;
    transition: color 0.3s ease;
  }
  .cta-glow::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: inherit;
    animation: border-glow 2s linear infinite;
  }
  @keyframes border-glow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
  }

/* ================================
   Stats Section
   ================================ */
 /* Stats */
    .stats { display:grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .stat { text-align:center; padding:1.2rem; border-radius: var(--radius); background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); }
    .stat .num { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--secondary); }
    .stat .label { color: var(--muted); font-weight: 500; }

.stats-modern-bg {
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 10px 30px rgba(208,170,75,0.08);
  /* Optional: subtle gradient for depth */
  /* background: linear-gradient(120deg, #fff 80%, #f7f0d9 100%); */
}

.stats-modern .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d0aa4b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(208,170,75,0.12);
}

.stats-modern .num {
  color: #091e3e;
  margin-bottom: .25rem;
}

.stats-modern .label {
  font-size: 1rem;
  color: #747576;
  margin-top: .25rem;
}

/* ================================
   Testimonials
   ================================ */
.testimonials { display:grid; gap:2rem; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); }
.testimonials .card { padding:2rem; }
.testimonials .author { margin-top:1rem; font-weight:600; color:var(--secondary); }

.testimonials-section {
  background: none;
  position: relative;
  z-index: 1;
}

.testimonials-bg {
  background: linear-gradient(to bottom, #f7f0d9 0 55%, #fff 55% 100%);
  min-height: 600px;
  width: 100%;
  padding-bottom: 5rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #d0aa4b;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(208,170,75,0.09);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 370px;
}

.testimonial-quote {
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #313131;
  font-size: 1.08rem;
  margin-bottom: 2rem;
  min-height: 70px;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #f7f0d9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  color: #313131;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.testimonial-role {
  color: #747576;
  font-size: 1rem;
  margin-bottom: 0;
}

/* ================================
   Blog Section
   ================================ */

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--secondary);
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background: var(--secondary);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.blog-card {
  background: #091e3e;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(241, 191, 112, 0.4);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.15rem;
  color: var(--heading);
  margin: 0.75rem 0;
  font-weight: 600;
}

.blog-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
}

.read-more {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more:hover {
  color: #fff;
}


/* ================================
   Call to Action
   ================================ */
.cta { text-align:center; padding:4rem 2rem; background: linear-gradient(135deg, var(--secondary), var(--primary)); border-radius:var(--radius-lg); box-shadow:var(--shadow); }
.cta h2 { color:#000; margin-bottom:1rem; }
.cta p { color:#111; margin-bottom:2rem; }

/* Team Section Styles - Fixed for Mobile */
.team-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 0;
}

.section-header .section-subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--secondary);
}

.section-header .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

/* Founder Card - Mobile Fixed */
.founder-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-image-wrapper {
  position: relative;
  width: 100%;
}

.founder-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.founder-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--secondary);
  color: var(--surface);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Team Member Cards - Mobile Fixed */
.team-member-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid rgba(208, 170, 75, 0.1);
  height: 100%;
  margin: -20px;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.team-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 30, 62, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-card:hover .social-overlay {
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: var(--surface);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: white;
  color: var(--secondary);
  transform: scale(1.1);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.team-position {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.team-expertise {
  font-size: 0.85rem;
  line-height: 1.6;
  min-height: 60px;
}

.team-divider {
  width: 40px;
  height: 2px;
  background: var(--secondary);
  margin: 15px 0;
}

.team-contact small i {
  width: 16px;
}

.expertise-tags .badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .team-section {
    padding: 60px 20px;
  }
  
  .section-header .section-title {
    font-size: 1.8rem;
  }
  
  .founder-card .row {
    flex-direction: column;
  }
  
  .founder-image-wrapper {
    height: auto;
  }
  
  .founder-image-wrapper img {
    aspect-ratio: 16/9;
  }
  
  .team-image-wrapper img {
    aspect-ratio: 4/3;
  }
  
  .team-expertise {
    min-height: auto;
    margin-bottom: 10px;
  }
  
  .card-body {
    padding: 20px !important;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  .section-header .section-title {
    font-size: 1.5rem;
  }
  
  .founder-badge {
    bottom: 15px;
    left: 15px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .team-name {
    font-size: 1.1rem;
  }
  
  .team-expertise {
    font-size: 0.8rem;
  }
}

/* Smallest screens */
@media (max-width: 375px) {
  .team-image-wrapper img {
    aspect-ratio: 1/1;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
  }
}

.icon-box {
  width: 40px;
  height: 40px;
  background: rgba(241, 191, 112, 0.15); /* goldish background */
  color: var(--secondary); /* gold theme */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.satisfaction-card {
  width: 180px;
  border-radius: 12px;
  background: #fff;
}

.breadcrumb {
  background: transparent; /* no box background */
  margin-top: 1rem;
}

.breadcrumb-item a {
  color: #f5c542; 
}

.breadcrumb-item.active {
  color: #fff;
}

.uae-services {
  background-color: #f8fbff;
}

.uae-services h4 {
  color: var(--secondary);
}

.uae-services .card-title {
  color: #0d1b2a;
}

.uae-services ul li {
  margin-bottom: .6rem;
  color: #333;
  font-size: 1.1rem;
}

  .form-wrapper {
    max-width: 700px;
    background: rgba(32, 58, 129, 0.564); /* bluish transparent */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  }

  .form-control, .form-select {
    border-radius: 8px;
    border: 1px solid rgba(241,191,112,0.7); /* gold border */
  }

  .form-control:focus, .form-select:focus {
    border-color: #d0aa4b;
    box-shadow: 0 0 8px rgba(241,191,112,0.8);
  }

  .cta-glow {
    position: relative;
    border: 2px solid #d0aa4b;
    color: #d0aa4b;
    background: transparent;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .cta-glow:hover {
    background: #d0aa4b;
    color: #1e3a8a;
  }

  .cta-glow::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: 100%;
    border: 2px solid #d0aa4b;
    border-radius: inherit;
    animation: border-glow 2s linear infinite;
  }

  @keyframes border-glow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
  }


  .entity-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .entity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }
  .entity-card ul {
    padding-left: 1.2rem;
  }

  .doc-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  }
  .doc-card ul {
    padding-left: 1.2rem;
    font-size: 1.1rem;;
  }
  .check-list li::before {
    content: "✔️";
    margin-right: 8px;
    color: #d0aa4b;
  }

  .doc-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  }
  .doc-list {
    padding-left: 1.2rem;
    list-style: none;
  }
  .doc-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
  }
  .doc-list li::before {
    content: "\f15c"; /* Font Awesome file icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #d0aa4b;
  }

  .cost-card {
    background: #091e3e;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .cost-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  }

  .cost-card i {
  font-size: 2.3rem;
  color: #fff !important;
  background: #d0aa4b;
  border-radius: 50%;
  padding: 0.6rem;
  margin-right: 0.7rem;
  box-shadow: 0 2px 8px rgba(208,170,75,0.12);
  vertical-align: middle;
}

  .services-list {
    list-style: none;
    padding-left: 1.2rem;
  }
  .services-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: #444;
  }
  .services-list li::before {
    content: "\f00c"; /* check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #efb557;
  }


/* ================================
   Footer
   ================================ */
footer { background: var(--card); padding:3rem 1rem; margin-top:4rem; }
footer .footer-grid { display:grid; gap:2rem; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); }
footer h4 { color:var(--secondary); margin-bottom:1rem; }
footer p, footer a { color: #ffffff; font-size:.95rem; }
footer a:hover { color:var(--secondary); }
footer .brand { font-size:1.2rem; font-weight:700; }

.map-column .map-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  display: block;
}

.map-info {
  color: #ccc;
}

.map-info .small {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.map-info .btn {
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-color: rgba(255, 255, 255, 0.3);
}

.map-info .btn:hover {
  background: var(--gold);
  color: #0b1224;
  border-color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.2rem 0;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .map-container iframe {
    height: 180px;
  }
}

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-right: 1rem;
  font-size: 1.4rem;   /* icon size */
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px); /* subtle lift effect */
}

/* Animation for current year update */
#current-year {
  color: var(--gold);
  font-weight: 600;
}


/* Responsive */
@media (max-width: 980px){
  .hero-inner { grid-template-columns:1fr; }
  .menu { display:none; position:absolute; top:60px; right:20px; background:var(--card); flex-direction:column; padding:1rem; border-radius:var(--radius); box-shadow:var(--shadow); }
  .menu.show { display:flex; animation:fadeIn .3s ease; }
  .menu-toggle { display:flex; }
}

@keyframes fadeIn { from{opacity:0; transform:translateY(-10px);} to{opacity:1; transform:translateY(0);} }

  .post-header {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.post-meta {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.post-content h2, 
.post-content h3, 
.post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.author-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.social-share {
    margin: 2rem 0;
}

.social-share .btn {
    margin-right: 0.5rem;
}

.related-posts {
    margin-top: 3rem;
}

.related-post-card {
    transition: transform 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

/* Back to top button */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
}

.back-to-top {
    background: #d0aa4b;
    color: #0f172a;
    display: none; /* Hidden by default */
}

.back-to-top:hover {
    background: #e5b465;
    color: #0f172a;
}

/* Show back-to-top button when needed */
.back-to-top.show {
    display: flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.blog-title a {
    color: var(--dark-color);
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-meta i {
    margin-right: 0.3rem;
}

.author-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.5rem;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: #495057;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.category-list a:hover {
    background-color: rgba(241, 191, 112, 0.1);
    color: var(--primary-color);
}

.category-count {
    background: var(--primary-color);
    color: var(--dark-color);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.pagination .page-link {
    color: var(--dark-color);
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.pagination .page-link:hover {
    background-color: rgba(241, 191, 112, 0.2);
    border-color: #dee2e6;
}

.search-form .form-control {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.subscribe-form .form-control {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.entity-card ul li {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Service Icon Styles */
.service-icon {
  margin-bottom: 1rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d0aa4b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 2.5rem;
  color: #fff; 
}

.btn-outline-primary {
  border-color: #d0aa4b;
  color: #d0aa4b;
}

.btn-outline-primary:hover {
  background-color: #d0aa4b;
  border-color: #d0aa4b;
  color: #0f172a;
}

.btn-primary {
  background-color: #d0aa4b;
  border-color: #d0aa4b;
  color: #0f172a;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #e5b465;
  border-color: #e5b465;
  color: #0f172a;
}

.why-choose-us .feature-modern {
  position: relative;
  background: var(--bg-light);
  padding: 2rem 2rem 2rem 2.7rem;
  border-left: 8px solid #d0aa4b;
  border-radius: 25px;
  box-shadow: 0 4px 24px rgba(208,170,75,0.09);
}

.feature-modern {
  position: relative;
  background: var(--bg-light);
  padding: 2rem 2rem 2rem 2.7rem;
  border-left: 8px solid #d0aa4b;
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  box-shadow: 0 4px 24px rgba(208,170,75,0.09);
}

.why-choose-us .feature-modern:not(:last-child)::after {
  display: none;
}

.cta-section {
  background: #fff;
}

.bg-cta-gold {
  background: #d0aa4b;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.cta-info {
  border: 1px solid rgba(9, 30, 62, 0.272); /* very light divider */
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  background: rgba(246, 236, 193, 0.5);
  border-right: 1px solid rgba(9,30,62,0.06); /* very light divider */
}

.cta-input {
  background: #f7f0d9 !important;
  border: none;
  border-radius: 8px;
  color: #091e3e;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  box-shadow: none;
}

.cta-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #d0aa4b33;
  border: 1px solid #d0aa4b;
}

.btn-dark {
  background: #091e3e !important;
  color: #fff !important;
  border-radius: 8px;
  font-size: 1.1rem;
  border: none;
}

@media (max-width: 991px) {
  .cta-info, .bg-cta-gold {
    border-radius: 0 !important;
    padding: 2rem !important;
  }
}

.entity-card i,
.doc-card i {
  font-size: 2.3rem;
  color: #fff !important;
  background: #d0aa4b;
  border-radius: 50%;
  padding: 0.6rem;
  margin-right: 0.7rem;
  box-shadow: 0 2px 8px rgba(208,170,75,0.12);
  vertical-align: middle;
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.control-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;      
  justify-content: center; 
  text-align: center;
  gap: .5rem;
  min-height: 220px;      
  padding: 1.75rem;
}

.control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary, #f1bf70);
  color: #081126;
  font-size: 1.4rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Force the <i> inside to be white/dark-appropriate */
.control-icon i {
  color: var(--bg-light); /* dark icon on gold background for legibility */
  font-size: 1.2rem;
}

/* Heading spacing */
.control-card-body h5 {
  margin: .25rem 0 0.5rem;
  line-height: 1.15;
}

/* Keep paragraph muted, slightly smaller */
.control-card-body p.text-muted {
  margin: 0;
  font-size: .95rem;
  color: #6b7280; /* a muted gray similar to your theme */
}

/* Small responsive tweak: reduce min-height on narrow screens */
@media (max-width: 575px) {
  .control-card-body { min-height: 180px; padding: 1.25rem; }
  .control-icon { width:52px; height:52px; }
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; 
  height: 60px; 
  border-radius: 50%;
  background: #d0aa4b; 
  color: #0b1224;
  font-size: 1.1rem; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-icon i {
  font-size: 1.3rem;  /* reduced from 1.3rem */
}

.highlight-strong {
    font-weight: 700;
    color: #0f172a;      /* slightly darker color for clarity */
    letter-spacing: 0.2px;
    /* optional subtle text-shadow for extra clarity on light backgrounds */
    text-shadow: 0 0 0 rgba(0,0,0,0);
}


/* ================================
   Profile Viewer Styles
   ================================ */
.profile-viewer-section {
  background-color: #f8f9fa;
}

.profile-viewer-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 20px;
}

.viewer-controls {
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.profile-viewer-wrapper {
  position: relative;
  height: 70vh;
  overflow: hidden;
  margin: 20px 0;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-book {
  position: relative;
  width: 80%;
  height: 90%;
  perspective: 2000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-page {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateX(100%) rotateY(10deg);
  backface-visibility: hidden;
}

.profile-page.active {
  opacity: 1;
  transform: translateX(0) rotateY(0deg);
  z-index: 1;
}

.profile-page.prev {
  opacity: 0.7;
  transform: translateX(-100%) rotateY(-10deg);
  z-index: 0;
}

.page-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.thumbnail-navigation {
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
}

.thumbnails-container {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
}

.thumbnail {
  flex: 0 0 auto;
  width: 80px;
  height: 100px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.thumbnail.active {
  border-color: #0d6efd;
  opacity: 1;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .profile-book {
    width: 95%;
  }
  
  .viewer-controls {
    flex-direction: column;
    gap: 15px;
  }
  
  .viewer-actions, .page-navigation {
    width: 100%;
    justify-content: center;
  }
}

/* Fullscreen styles */
:fullscreen .profile-viewer-container {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  padding: 20px;
}

:-webkit-full-screen .profile-viewer-container {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  padding: 20px;
}

:-moz-full-screen .profile-viewer-container {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  padding: 20px;
}

.card-app { 
  background: #ffffff12; 
  border:1px solid rgba(241, 192, 112, 0.21);
}

.card-app-1 { 
  background: #ffffff12; 
  border: 1px solid rgba(241, 192, 112, 0.21);
  margin: 0 -28px;
  width: calc(100% + 56px);
  max-width: none;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .card-app-1 {
    margin: 0 -20px;
    width: calc(100% + 40px);
    padding: 0.5rem;
  }
  
  /* Remove any Bootstrap container constraints */
  .card-app-1 > .container,
  .card-app-1 > .container-fluid {
    max-width: 100% !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

@media (max-width: 576px) {
  .card-app-1 {
    margin: 0 -16px;
    width: calc(100% + 32px);
    padding: 0.25rem;
  }
}

.stepper { 
  counter-reset: step; 
}

.step { 
  position: relative; 
  padding-left: 12px; 
  margin-bottom:1.25rem; 
}

  /* ================================
   Enhanced Ratio Calculator Styles
   ================================ */

/* Category Tabs */
/* Mobile Optimized Category Tabs */
@media (max-width: 768px) {
    .ratio-category-tabs {
        margin-bottom: 1rem;
        position: relative;
    }
    
    .nav-pills-category {
        padding-bottom: 8px;
        scrollbar-width: none; /* Hide scrollbar on mobile */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    /* Hide scrollbar on Webkit browsers */
    .nav-pills-category::-webkit-scrollbar {
        display: none;
    }
    
    /* Add visual indicators for scrollability */
    .ratio-category-tabs::before,
    .ratio-category-tabs::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 8px; /* Match scrollbar padding */
        width: 30px;
        z-index: 2;
        pointer-events: none;
    }
    
    .ratio-category-tabs::before {
        left: 0;
        background: linear-gradient(to right, var(--background-color, #ffffff) 20%, transparent);
    }
    
    .ratio-category-tabs::after {
        right: 0;
        background: linear-gradient(to left, var(--background-color, #ffffff) 20%, transparent);
    }
    
    /* Compact tab styling */
    .nav-pills-category .nav-link {
        padding: 0.5rem 0.75rem !important;
        margin-right: 0.5rem;
        white-space: nowrap;
        font-size: 0.875rem;
        border-radius: 6px;
        flex-shrink: 0; /* Prevent tabs from shrinking */
    }
    
    /* Reduce icon size on mobile */
    .nav-pills-category .nav-link i {
        font-size: 0.9rem;
        margin-right: 0.25rem !important;
    }
    
    /* Make active tab more visible */
    .nav-pills-category .nav-link.active {
        box-shadow: 0 2px 4px rgba(208, 170, 75, 0.3);
    }
    
    /* Add a scroll hint message (optional) */
    .ratio-category-tabs::before {
        content: '← Scroll →';
        position: absolute;
        bottom: -20px;
        left: 75%;
        transform: translateX(-50%);
        font-size: 0.75rem;
        color: var(--muted);
        opacity: 0.7;
        animation: pulse-hint 2s infinite;
    }
    
    @keyframes pulse-hint {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.8; }
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .nav-pills-category .nav-link {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem;
    }
    
    .nav-pills-category .nav-link i {
        font-size: 0.8rem;
        margin-right: 0.2rem !important;
    }
    
    /* Hide text on smallest screens, show only icons */
    @media (max-width: 360px) {
        .nav-pills-category .nav-link span:not(.visually-hidden) {
            display: none;
        }
        
        .nav-pills-category .nav-link i {
            margin-right: 0 !important;
            font-size: 1rem;
        }
        
        .nav-pills-category .nav-link {
            padding: 0.5rem !important;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}

/* Add a subtle bounce animation on first load to indicate scrollability */
@keyframes bounce-hint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

@media (max-width: 768px) {
    .nav-pills-category {
        animation: bounce-hint 1s ease-in-out 1;
        animation-delay: 1s;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    .nav-pills-category .nav-link {
        min-height: 36px;
        display: flex;
        align-items: center;
    }
}

/* Optional: Add a wrapper div with overflow hidden to fully contain scrollbar */
.nav-pills-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden; /* This will clip the scrollbar to rounded corners */
}

/* Or add to the existing .ratio-category-tabs class */
.ratio-category-tabs {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden; /* This will contain the scrollbar within rounded corners */
    background: rgba(11, 18, 36, 0.8); /* Add background to match */
}

.nav-pills-category .nav-link {
    color: #e2e8f0;
    background: rgba(11, 18, 36, 0.8);
    border: 1px solid rgba(241, 191, 112, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-pills-category .nav-link:hover {
    background: rgba(241, 191, 112, 0.1);
    border-color: var(--gold);
}

.nav-pills-category .nav-link.active {
    background: var(--gold);
    color: #0b1224;
    border-color: var(--gold);
    font-weight: 600;
}

/* Ratio Grids */
.ratios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .ratios-grid {
        grid-template-columns: 1fr;
    }
}

.ratio-card {
    background: linear-gradient(135deg, #0b1224 0%, #1a2238 100%);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #e2e8f0;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.ratio-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(241, 191, 112, 0.2);
}

.ratio-card.selected {
    border-color: #10b981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #0b1224 0%, #064e3b 100%);
    animation: pulse-selected 2s ease-in-out infinite;
}

@keyframes pulse-selected {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3); 
    }
    50% { 
        box-shadow: 0 8px 35px rgba(16, 185, 129, 0.5); 
    }
}

.selected-tick {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 2;
}

.ratio-card.selected .selected-tick {
    opacity: 1;
    transform: scale(1);
}

.selected-tick i {
    color: white;
    font-size: 14px;
}

.ratio-abbr {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f1c070 0%, #e6a336 100%);
    display: grid;
    place-items: center;
    color: #0b1224;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-right: 15px;
}

.ratio-name {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 5px;
}

.ratio-description {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* Selected Ratios Summary */
.selected-ratios-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.selected-ratios-list > div {
    background: rgba(241, 191, 112, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    border-left: 3px solid var(--gold);
    color: #ffffff
}

/* Inputs Container */
.inputs-container {
    background: rgba(255, 252, 238, 0.5);
    border: solid 1px rgba(241, 191, 112, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.input-category-section {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(241, 191, 112, 0.1);
}

.input-category-section h6 {
    font-size: 1rem;
    font-weight: 600;
}

.ratio-input {
    background: #ffffff;
    border: 1px solid rgba(241, 191, 112, 0.4); /* More visible border */
    color: #000;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500; /* Slightly bolder text */
}

.ratio-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(241, 191, 112, 0.25);
    color: #000000;
    outline: none;
}

.ratio-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: normal;
}

.ratio-input:focus {
    background: rgb(255, 255, 255);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(241, 191, 112, 0.1);
    color: #000000;
}

.ratio-input::placeholder {
    color: #94a3b8;
}

/* Results Modal Enhancements */
.modal-content {
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bg-paper {
    background: #f7f6f2;
    color: #0f172a;
}

.badge-good { 
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-warn { 
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-risk { 
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Saved Results Table */
.saved-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.saved-table thead {
    background: #0b1224;
}

.saved-table th {
    color: var(--gold);
    font-weight: 600;
    border: none;
    padding: 12px 16px;
}

.saved-table td {
    padding: 12px 16px;
    vertical-align: middle;
    border-color: #e2e8f0;
}

.saved-table tbody tr:hover {
    background: rgba(241, 191, 112, 0.05);
}

/* Stepper Improvements */
.stepper {
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    border-radius: 3px;
}

.step-instruction {
    background: rgba(241, 191, 112, 0.1);
    border-left: 3px solid var(--gold);
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 15px;
}

.step-instruction p {
    margin-bottom: 0;
    color: #e2e8f0;
}

.step-instruction .instruction-icon {
    color: var(--gold);
    margin-right: 8px;
}

/* Button Enhancements */
.btn-primary {
    background: var(--secondary);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 131, 12, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #e6a336 100%);
    color: #0b1224;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241, 191, 112, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-pills-category {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .nav-pills-category .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
    
    .ratios-grid {
        grid-template-columns: 1fr;
    }
    
    .ratio-card {
        padding: 1rem;
    }
    
    .inputs-container {
        padding: 1rem;
    }
    
    .input-category-section {
        padding: 0.75rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(11, 18, 36, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6a336;
}

/* Animation for ratio selection */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ratio-card {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Loading state for buttons */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}


/* Default button size */
.clear-saved-btn {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
}

/* Medium devices (tablets) */
@media (max-width: 992px) {
    .clear-saved-btn {
        font-size: 0.8125rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Small devices (landscape phones) */
@media (max-width: 768px) {
    .clear-saved-btn {
        font-size: 0.75rem;
        padding: 0.175rem 0.5rem;
    }
    
    h6.mb-0 {
        font-size: 0.95rem;
    }
    
    h6.mb-0 i {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .clear-saved-btn {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
        white-space: nowrap;
    }
    
    h6.mb-0 {
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

/* Very small devices */
@media (max-width: 400px) {
    .clear-saved-btn {
        font-size: 0.65rem;
        padding: 0.125rem 0.35rem;
    }
    
    h6.mb-0 i {
        margin-right: 0.25rem !important;
    }
}

/* ================================
   Partners Slider Styles
   ================================ */
.partners-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
  background: linear-gradient(to right, rgba(15, 35, 70, 0.05), rgba(15, 35, 70, 0.1), rgba(15, 35, 70, 0.05));
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.partners-slider-container.dragging {
  cursor: grabbing;
}

.partners-slider-track {
  display: flex;
  animation: slide 40s linear infinite;
  width: calc(200px * 16); /* 8 logos * 2 sets */
  touch-action: pan-x;
  will-change: transform;
}

.partner-logo {
  width: 200px;
  flex-shrink: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-height: 60px;
  width: auto;
  filter: grayscale(0%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.partner-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.2);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 8));
  }
}

.partners-slider-container:hover .partners-slider-track {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .partner-logo {
    width: 160px;
    padding: 0 15px;
  }
  
  .partners-slider-track {
    width: calc(160px * 16);
    animation-duration: 35s;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-160px * 8));
    }
  }
}

@media (max-width: 576px) {
  .partner-logo {
    width: 140px;
    padding: 0 12px;
  }
  
  .partners-slider-track {
    width: calc(140px * 16);
    animation-duration: 30s;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-140px * 8));
    }
  }
}

/* ================================
   omni Chat Widget
   ================================ */

.omni-floating-btn {
    position: fixed;
    bottom: 140px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.omni-floating-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 20px 40px rgba(235, 219, 37, 0.438);
}

.omni-avatar {
    width: 40px;
    height: 40px;
    color: var(--text);
}

.omni-pulse {
    position: absolute;
    width: 72px;
    height: 72px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.6;
    animation: omni-pulse 2s infinite;
}

@keyframes omni-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1.3); opacity: 0; }
}

.omni-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 380px;
    height: 600px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(235, 143, 37, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 10001;
    overflow: hidden;
}

.omni-hidden {
    display: none;
}

.omni-header {
    background: var(--card);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.omni-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.omni-avatar-sm {
    width: 36px;
    height: 36px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.omni-header-text {
    display: flex;
    flex-direction: column;
}

.omni-title {
    color: var(--secondary);
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

.omni-status {
    color: var(--accent);
    font-size: 12px;
    font-weight: 500;
}

/* Header Actions */
.omni-header-actions {
    display: flex;
    gap: 4px;
    align-items: center;
}

.omni-action-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.omni-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    transform: translateY(-1px);
}

.omni-close-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s;
}

.omni-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

/* Maximized state */
.omni-chat-widget.omni-maximized {
    width: 95vw !important;
    height: 90vh !important;
    max-width: 1200px;
    max-height: 900px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(235, 143, 37, 0.4);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Adjust close button position when maximized */
.omni-maximized .omni-close-btn {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments for maximized mode */
@media (max-width: 768px) {
    .omni-chat-widget.omni-maximized {
        width: 98vw !important;
        height: 95vh !important;
        border-radius: 8px;
    }
}

/* Chat Messages Container */
.omni-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg);
}

.omni-welcome-message {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.omni-welcome-avatar {
    flex-shrink: 0;
}

.omni-welcome-text h4 {
    color: var(--secondary);
    margin: 0 0 8px 0;
    font-size: 16px;
}

.omni-welcome-text p {
    color: var(--text);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Message Styles */
.omni-message {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
}

.omni-message-user {
    flex-direction: row-reverse;
}

.omni-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
}

.omni-message-bot .omni-message-avatar {
    background: #0d274d;
    color: var(--text);
}

.omni-message-user .omni-message-avatar {
    background: var(--secondary);
    color: var(--bg);
}

/* Enhanced Message Content Styling */
.omni-message-content {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.omni-message-bot .omni-message-content {
    background: linear-gradient(135deg, #0d274d, #081126);
    color: #ffffff;
    border-bottom-left-radius: 6px;
    text-align: left;
}

.omni-message-user .omni-message-content {
    background: linear-gradient(135deg, #ffd260, #d0aa4b);
    color: white;
    border-bottom-right-radius: 6px;
}

/* Enhanced List Formatting */
.omni-message-content ul.omni-list,
.omni-message-content ol.omni-list {
    margin: 10px 0 10px 20px;
    padding: 0;
    list-style-position: outside;
}

.omni-message-content ul.omni-list {
    list-style-type: disc;
}

.omni-message-content ol.omni-list {
    list-style-type: decimal;
}

.omni-message-content ul.omni-list li,
.omni-message-content ol.omni-list li {
    margin: 6px 0;
    padding-left: 4px;
    line-height: 1.5;
}

/* Ensure proper indentation for nested lists */
.omni-message-content ul.omni-list ul,
.omni-message-content ol.omni-list ol {
    margin-left: 20px;
    margin-top: 5px;
}

/* Better spacing for list items */
.omni-message-content li {
    margin-bottom: 4px;
}

/* Fix for inline elements within lists */
.omni-message-content li strong,
.omni-message-content li em {
    display: inline;
}

/* Text Formatting */
.omni-message-content h2,
.omni-message-content h3,
.omni-message-content h4 {
    color: #ffd260;
    margin: 12px 0 6px 0;
    font-weight: 600;
}

.omni-message-content h2 {
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
}

.omni-message-content h3 {
    font-size: 15px;
}

.omni-message-content h4 {
    font-size: 14px;
}

.omni-message-content strong {
    color: #ffd260;
    font-weight: 600;
}

.omni-message-content em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.omni-message-content code.omni-code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--secondary);
}

.omni-message-content p {
    margin: 8px 0;
    line-height: 1.5;
}

/* Responsive list adjustments */
@media (max-width: 480px) {
    .omni-message-content ul.omni-list,
    .omni-message-content ol.omni-list {
        margin-left: 15px;
    }
}

/* Thinking Indicator Styles */
.omni-thinking {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.omni-thinking-content {
    background: var(--card);
    border-radius: 18px;
    border-bottom-left-radius: 6px;
    padding: 12px 16px;
    min-width: 120px;
}

.omni-thinking-dots {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

.omni-thinking-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: omni-thinking-pulse 1.4s infinite;
}

.omni-thinking-dot:nth-child(2) { animation-delay: 0.2s; }
.omni-thinking-dot:nth-child(3) { animation-delay: 0.4s; }

.omni-thinking-text {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

@keyframes omni-thinking-pulse {
    0%, 60%, 100% { 
        opacity: 0.4;
        transform: scale(0.8);
    }
    30% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Prompts Section */
.omni-prompts {
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--card);
    transition: all 0.3s ease;
}

.omni-prompts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease;
}

.omni-prompts-title-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.omni-toggle-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.omni-toggle-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
}

.omni-toggle-btn.collapsed {
    transform: rotate(-90deg);
}

.omni-prompts-title {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.omni-collapse-indicator {
    font-size: 10px;
    color: var(--muted);
    margin-left: 4px;
    transition: opacity 0.3s ease;
}

.omni-prompts-actions {
    display: flex;
    gap: 4px;
}

.omni-refresh-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
}

.omni-refresh-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
}

.omni-prompts-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.omni-prompts-container.omni-prompts-collapsed {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    pointer-events: none;
}

.omni-prompts-container.omni-prompts-expanded {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
    pointer-events: all;
}

/* Prompt buttons */
.omni-prompt-btn {
    background: rgba(255, 201, 115, 0.129);
    border: 1px solid rgba(206, 158, 0, 0.164);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    line-height: 1.4;
    opacity: 1;
    transform: translateY(0);
}

.omni-prompts-collapsed .omni-prompt-btn {
    opacity: 0;
    transform: translateY(-10px);
}

.omni-prompt-btn:hover {
    background: rgba(255, 168, 37, 0.208);
    border-color: var(--secondary);
    transform: translateY(-1px);
}

.omni-prompt-used {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.omni-prompt-used:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: none !important;
}

/* Compact mode when collapsed */
.omni-prompts.omni-compact {
    padding: 8px 20px;
}

.omni-prompts.omni-compact .omni-prompts-header {
    margin-bottom: 0;
}

/* Chat Input Area */
.omni-input-area {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--surface);
}

.omni-input-container {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.omni-input {
    flex: 1;
    background: var(--surface);
    border: 1px solid rgba(206, 158, 0, 0.164);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    resize: none;
    outline: none;
    transition: all 0.2s;
    min-height: 44px;
    max-height: 120px;
    /* Hide scrollbar */
    overflow: hidden !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.omni-input::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.omni-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(235, 182, 37, 0.2);
}

.omni-input::placeholder {
    color: var(--muted);
}

.omni-send-btn {
    background: linear-gradient(135deg, #0d274d, #081126);
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.omni-send-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(113, 37, 235, 0.4);
}

.omni-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.omni-input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.omni-char-count {
    color: var(--muted);
    font-size: 11px;
}

.omni-powered-by {
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
}

/* Download Overlay */
.omni-download-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.omni-download-overlay.active {
    opacity: 1;
    visibility: visible;
}

.omni-download-modal {
    background: var(--surface);
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.omni-download-overlay.active .omni-download-modal {
    transform: translateY(0);
}

.omni-download-title {
    color: var(--secondary);
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
}

.omni-download-input {
    width: 100%;
    padding: 12px;
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.omni-download-input:focus {
    border-color: var(--secondary);
}

.omni-download-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.omni-download-btn, .omni-cancel-btn {
    color: #d0aa4b;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.omni-download-btn {
    background: var(--secondary);
    color: var(--bg);
}

.omni-download-btn:hover {
    background: var(--secondary);
    opacity: 0.9;
    transform: translateY(-1px);
}

.omni-cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.omni-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Scrollbar Styling */
.omni-messages::-webkit-scrollbar {
    width: 6px;
}

.omni-messages::-webkit-scrollbar-track {
    background: transparent;
}

.omni-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.omni-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Enhanced Scrollbar */
.omni-messages::-webkit-scrollbar {
    width: 8px;
}

.omni-messages::-webkit-scrollbar-track {
    background: transparent;
}

.omni-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--primary-700));
    border-radius: 4px;
}

.omni-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary));
}

/* Message Animation */
.omni-message {
    animation: omni-message-slide 0.3s ease-out;
}

@keyframes omni-message-slide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status Animation */
.omni-status {
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Typing Animation */
.omni-typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--primary);
    margin-left: 2px;
    animation: omni-cursor-blink 1s infinite;
}

@keyframes omni-cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive Design */
@media (max-width: 480px) {
    .omni-chat-widget {
        width: calc(100vw - 40px);
        height: 70vh;
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .omni-message-content {
        max-width: 85%;
        font-size: 13px;
    }
    
    .omni-message-content ul.omni-list,
    .omni-message-content ol.omni-list {
        margin-left: 15px;
    }
}

/* Add these styles to your existing CSS */

/* Ensure list numbers are visible and properly formatted */
.omni-message-content ol.omni-list {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
    margin: 10px 0 10px 20px;
}

.omni-message-content ol.omni-list li {
    counter-increment: item;
    margin: 6px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.omni-message-content ol.omni-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd260;
    font-weight: bold;
    font-size: 14px;
}

/* Bulleted lists */
.omni-message-content ul.omni-list {
    list-style-type: none;
    padding-left: 0;
    margin: 10px 0 10px 20px;
}

.omni-message-content ul.omni-list li {
    margin: 6px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.omni-message-content ul.omni-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd260;
    font-weight: bold;
    font-size: 16px;
}

/* Ensure proper spacing in messages */
.omni-message-content p {
    margin: 8px 0;
    line-height: 1.5;
}

.omni-message-content h2,
.omni-message-content h3,
.omni-message-content h4 {
    margin: 16px 0 8px 0;
    line-height: 1.3;
}

/* Fix for concatenated text */
.omni-message-content {
    word-spacing: 0.05em;
    letter-spacing: 0.01em;
}

.logout-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
    max-width: 450px;
    width: 100%;
}
.logout-icon {
    font-size: 4rem;
    color: #f1bf70;
    margin-bottom: 1.5rem;
}
.btn-logout {
    background: #dc3545;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
}
.btn-logout:hover {
    background: #bb2d3b;
    color: white;
}
.btn-cancel {
    background: #6c757d;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
}
.btn-cancel:hover {
    background: #5c636a;
    color: white;
}