:root {
      --primary: #0f172a;
      --secondary: #1e293b;
      --accent: #14b8a6;
      --accent-light: #2dd4bf;
      --text-light: #f1f5f9;
      --text-muted: #cbd5e1;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }
    
    body {
      /* background:  url('../assets/images/background.JPG') center/cover no-repeat fixed; */
      color:  #fff;
      font-family: "Battambang", system-ui, sans-serif;
      /* font-family: "Hanuman", system-ui, sans-serif; */
      line-height: 1.6;
      min-height: 100vh;
    }

/* Navbar */
    .bg-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('../images/Newbg.webp') center/cover no-repeat;
      z-index: -1;
    }

    .nav-link {
      color: #ffffff !important;
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      transition: all 0.3s ease;
      margin: 0 0.5rem;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 0;
      height: 2px;
      /* background: #ffc107; */
      transition: width 0.3s ease;
    }

    .nav-link:hover, .nav-link.active {
      color: #ffc107 !important;
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

/* Header */
    .glass-header {
      position: fixed;
      top: 20px;
      width: 100%;
      display: flex;
      justify-content: center;
      z-index: 999;
      flex-direction: column; /* change to column so children stack vertically */
      align-items: center;
    }

/* Navbar */
    .glass-navbar {
      display: flex;
      align-items: center;
      justify-content: center; /* menu centered */
      padding: 10px 10px;
      height: 55px;
      width: 70%;
      border-radius: 50px;
      background: rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
      position: relative; /* for absolute logo inside */
    }

    /* Logo */
    .logo-container {
      position: absolute;  /* remove from normal flow */
      top: 0px;          /* half of logo height */
      left: -10%;
      transform: translateX(-50%);
      z-index: 10;
    }

    .logo-container img {
      height: 150px; /* adjust as needed */
      width: auto;
    }

/* Language */
    .language-buttons {
      position: absolute;
      top: 50%;
      right: -15%;
      transform: translateY(-50%);
      display: flex;
      gap: 8px;
      z-index: 100; /* no px */
    }

    /* .language-buttons .btn-outline-light{
        width: 50px;
        height: 30px;
    } */

    .language-buttons img {
      width: 30px;
      height: auto;
      border-radius: 3px;
    }

/* ===== FOOTER ===== */
    footer {
      position: relative;
      background: rgba(103, 102, 102, 0.4);
      backdrop-filter: blur(1px);      /* blur effect */
      -webkit-backdrop-filter: blur(1px);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 30px 0 10px;
      color: #fff;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap:20px;
      margin-bottom: 10px;
    }

    .footer-section h5 {
      color: #ffc107;
      /* font-weight: 700; */
      margin-bottom: 20px;
      /* color: var(--accent-light); */
    }

    .footer-heading {
      display: flex;
      align-items: baseline; /* aligns H4 and H5 nicely */
      gap: 10px; /* space between H5 and H4 */
    }

    .footer-sections h4 {
      color: #ffc107;
      font-family: 'Moul', sans-serif;
      margin-bottom: 20px;
      /* color: var(--accent-light); */
    }

    .footer-sections h5 {
      color: #ffc107;
      /* font-weight: 700; */
      margin-bottom: 20px;
      /* color: var(--accent-light); */
    }

    .footer-section p {
      /* color: var(--text-muted); */
      line-height: 1.8;
      margin: 0;
    }

    .footer-section i {
      font-size: 1rem;
    }

    .footer-links {
      list-style: none;
      margin: 15px;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #ffc107;
      text-decoration: underline;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 8px;
      color: var(--text-muted);
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--text-light);
      border-color: var(--text-light);
      color: var(--primary);
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(20, 184, 166, 0.1);
      padding-top: 30px;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

/* Live Chat */
/* ===== Floating Circle Button ===== */
    .live-chat-circle {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background: #ffbf00;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      cursor: pointer;
      z-index: 1000;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .live-chat-circle:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    }

    .chat-logo-circle {
        width: 32px;
        height: 32px;
        object-fit: contain;
        border-radius: 50%;
    }

/* Tooltip on hover */
    .live-chat-circle::after {
        content: "Chat with us";
        position: absolute;
        bottom: 70px;
        right: 0;
        background: #ffc107;
        padding: 6px 12px;
        border-radius: 6px;
        color: #fff;
        font-size: 14px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .live-chat-circle:hover::after {
        opacity: 1;
    }

/* ===== Live Chat Popup ===== */
    .live-chat-popup {
        position: fixed;
        bottom: 90px;
        right: 20px;
        width: 320px;
        background: rgba(30,41,59,0.95);
        color: #fff;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        font-family: sans-serif;
        overflow: hidden;
        z-index: 1100;
        display: none; /* hidden by default */
        flex-direction: column;
        transition: all 0.3s ease;
    }

/* Show popup */
    .live-chat-popup.show {
        display: flex;
        animation: slideUp 0.3s ease;
    }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat Header */
  .chat-header {
      padding: 12px 16px;
      background: #ffc107;
      font-weight: bold;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      position: relative;
  }

  .chat-logo {
      width: 32px;
      height: 32px;
      object-fit: contain;
      border-radius: 6px;
  }

  .chat-header h2 {
      font-family: 'Playfair Display', serif;
      margin: 0;
      font-size: 24px;
      font-weight: 600;
      color: #ffffff;
      letter-spacing: 0.5px;
    }

    .chat-header p {
      margin: 2px 0 0;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.85);
      font-style: italic;
      line-height: 1.2;
    }

/* Close button */
    .chat-close {
        position: absolute;
        right: 20px;
        top: 10px;
        background: transparent;
        border: none;
        font-size: 30px;
        font-weight: bold;
        color: #fff;
        cursor: pointer;
    }

    .chat-close:hover {
        color: #000;
    }

/* Form */
    .chat-form {
        display: flex;
        flex-direction: column;
        padding: 12px;
        gap: 8px;
    }

    .chat-form input,
    .chat-form textarea {
        width: 100%;
        padding: 8px;
        border: none;
        border-radius: 6px;
    }

    .chat-form textarea {
        resize: none;
        height: 80px;
    }

/* Button */
    .chat-form button {
        background: #ffc107;
        color: #fff;
        border: none;
        padding: 10px;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
    }

    .chat-form button:hover {
        background: #a97f01;
    }

/* Success Message */
    .success-message {
        display: none;
        padding: 10px;
        text-align: center;
        background: #4BB543; /* green */
        border-radius: 8px;
        margin: 8px;
        color: #fff;
        font-weight: bold;
    }

    .success-message.show {
        display: block;
    }

    .success-message i {
        margin-right: 6px;
    }





