@layer design-system, reset, base, utilities, components, layout, overrides;
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400..700&display=swap");
/* @import "https://unpkg.com/open-props" layer(design-system); */
@import "/assets/css/open-props.min.css" layer(design-system);


/* 1. Ensure the body takes up at least the full height of the screen */
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* 2. Tell the main section to expand and take up all remaining space */
.main-content {
  flex: 1;
  background-color: #f1f1f1;
  margin-top: 39px;
}

#app {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#app.active {
  opacity: 1;
}

/* 3. Style your footer as usual */
.site-footer {
  /* background: #333; */
  /* color: white; */
  padding: 20px;
  text-align: center;
}

.wbg{
    background-color: white;
}

.upcase{
    text-transform: uppercase;
}

.menu-items-fs1{
    font-size: .8rem;
}

.text-accent {
    color: rgb(245 158 11);
}

.hero_bg_img{
        background-image: url(/static/assets/hero.jpg);
    background-size: cover;
      background-position: center;
  background-repeat: no-repeat;
  /* Add the blur effect */
  /* filter: blur(4px); */
  /* -webkit-filter: blur(3px); */
    height: 60vh;
    border-radius: .7rem;
}

.hl-color-w{
    color:#f4f4f4;
}
        
.mt6{
    margin-top: 6rem !important;
}


.blur-behind-w{
    /* backdrop-filter: saturate(180%) blur(8px); */
     /* backdrop-filter: saturate(180%) blur(8px); */
      backdrop-filter: saturate(140%) blur(5px);
      /* filter: blur(10px) saturate(1.1) brightness(1.1); */
      /* -webkit-mask-image: linear-gradient(to bottom, rgba(135, 135, 135, 0.236) 35%, rgba(0, 0, 0, 1) 15%); */
         /* mask-image: linear-gradient(to bottom, rgba(148, 148, 148, 0.448), rgba(0, 0, 0, 1)); */
}


.blur-behind:after {
    /* backdrop-filter: saturate(180%) blur(8px); */
      filter: blur(10px) saturate(1.1) brightness(1.1);
   -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 1) 65%);
   mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

  
.hbtn-dc {
    font-size: large;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    padding-left: 5rem;
    padding-right: 5rem;
    color: rgb(255 255 255);
    /* background-color: rgb(30 41 59); */
    background-color: rgb(45 67 102);
    /* background-color: rgb(40 61 93); */
    border-radius: .5rem;
}

.hbtn-bc {
    font-size: large;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    padding-left: 5rem;
    padding-right: 5rem;
    color:  rgb(30 41 59);
    background-color: rgb(255 255 255);
    border-radius: .5rem;
}

.hbtn-ac {
    font-size: large;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    padding-left: 5rem;
    padding-right: 5rem;
    color: rgb(255 255 255);
    background-color: var(--accent);
    border-radius: .5rem;
}


.hbtn-nc {
    font-size: large;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    padding-left: 5rem;
    padding-right: 5rem;
    /* color:  rgb(30 41 59); */
    color: rgb(255 255 255);
    /* background-color: rgb(255 255 255); */
    border-radius: .5rem;
}

 .about .content-about {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      opacity: inherit !important;
    visibility: inherit !important;
    }

.section-subtitle {
      color: #a6a6a6;
      margin-bottom: 28px;
      max-width: 700px;
    }

    /* Sections */
    section {
      padding: 60px 0;
    }

    section + section {
      border-top: 1px solid #a6a6a6;
    }

    .section-title {
      font-size: 1.4rem;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .section-subtitle {
      color: #a6a6a6;
      margin-bottom: 28px;
      max-width: 700px;
    }

    .about p {
      color: var(--muted);
      margin-bottom: 12px;
      line-height: 1.8;
    }

        .about h2 {
          font-size: 1.9rem;
    padding-bottom: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: .08em;
    }

    .about h4 {
      font-size: 1.3rem;
      font-weight: 100;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #f2aa48;
      padding-top: 1rem;
      padding-bottom: 1rem;

    }

.highlight-box-0{
  font-weight: 600;
padding-bottom: 1.9rem;
}

    .highlight-box {
      background: #fff;
      border: 1px solid #a6a6a6;
      border-radius: 10px;
      padding: 20px;
    }

    .highlight-box h4 {
      margin-bottom: 8px;
    }

    .highlight-box p {
      margin: 0;
      font-size: 0.95rem;
    }


@layer reset {

    *,
    ::before,
    ::after {
        box-sizing: border-box;
    }

    :where(:not(dialog)) {
        margin: 0;
    }

    :where(html) {
        -webkit-text-size-adjust: none;

        @media (prefers-reduced-motion: no-preference) {
            scroll-behavior: smooth;
        }
    }

    :where(body) {
        min-block-size: 100svb;
        -webkit-font-smoothing: antialiased;
    }
}

@layer base {
    html {
        --surface-1: white;
        --text-1: var(--stone-11);
        --primary: var(--indigo-7);
        --secondary-container: var(--gray-12);
        --font-family-default: "Source Sans 3", var(--font-neo-grotesque);

        /* Override the default Open Props shadow properties for dark mode. 
        Make sure to use @layer when importing Open Props. */

        @media (prefers-color-scheme: dark) {
            --shadow-color: 220 3% 15%;
            --shadow-strength: 1%;
        }
    }
}

@layer layout {
    .section {
        /* background-image: url(""); */
        background-color: #f1f1f1 !important;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: grid;
        font-family: var(--font-family-default);
     
        padding-block: var(--size-8);
        padding-inline: var(--size-7);
        place-items: start center;
        position: relative;

        /* xl-n-below */
        @media (width < 1440px) {
            background-position: top 20% center;
            background-size: 150%;
        }

        /* md-n-below */
        @media (width < 768px) {
            background-position: top 20% center;
            background-size: 1000%;
        }
    }

.section-size-400{
   min-block-size: max(400px, 100svb);
}
    .logo-pic{
        /* width: 50px;height: 50px; */
        width: 42px;
        height: 42px;
    }

    .section-container {
        inline-size: min(1028px, 100%);
    }

    .section-wrapper {
        display: grid;
        place-items: center;
        gap: var(--size-7);
    }

    .section-header {
        display: grid;
        place-items: center;
        gap: var(--size-5);
    }

    .logo {
        font-size: var(--font-size-4);
        font-weight: var(--font-weight-7);
    }

    .hgroup {
        display: grid;
        place-items: center;
        gap: var(--size-1);
        text-align: center;
    }

        .hgroup-nc {
        display: grid;
        /* place-items: center; */
        gap: var(--size-1);
        text-align: center;
    }


    .headline-1 {
        font-size: var(--font-size-5);
    }

    .subheading {
        font-size: var(--font-size-3);
    }

    .cta-group {
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr;

        /* sm-n-above */
        @media (width >=560px) {
            grid-auto-flow: column;
            grid-template-columns: 1fr 1fr;
        }
    }

    .section-cards {
        display: grid;
        padding: 0;
        list-style: none;
        gap: 32px;

        @media (width >=460px) {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        /* md-n-above */
        @media (width >=768px) {
            grid-template-columns: 1fr 1fr 1fr 1fr;
        }
    }

        .grid-two-cards {
        display: grid;
        padding: 0;
        list-style: none;
        gap: 32px;

        @media (width >=460px) {
            grid-template-columns:  1fr;
            gap: 12px;
        }

        /* md-n-above */
        @media (width >=768px) {
            grid-template-columns: 1fr 1fr;
        }
    }

    .card-wrap {
        text-decoration: none;
        color: var(--gray-12);
        /* background: var(--card-bg); */
        /* background-image: linear-gradient(170.96deg,
                oklch(100% 0 0 / 60%) 18.95%,
                oklch(100% 0 0 / 20%) 99.73%); */
        display: grid;
        block-size: 100%;
        border-radius: 3px;
        padding: 12px;
        text-align:center;
        cursor: pointer;
        inline-size: 100%;
    }

        .card-wrap:hover {
        text-decoration: none;
        color: var(--gray-12);
        background: var(--card-bg);
                background-image: linear-gradient(170.96deg,
                oklch(100% 0 0 / 60%) 18.95%,
                oklch(100% 0 0 / 20%) 99.73%);
        border-width: var(--border-size-1);
        padding: 10px !important;
        border-color: white;
        border-style: solid;
        cursor: pointer;
        inline-size: 100%;
    }

    .figure {
        display: grid;
        gap: var(--size-3);
        grid-template-rows: min-content 1fr;
    }

    .visual {
        background-image: var(--gradient-15);
        border-radius: 10px;
        block-size: 175px;
        overflow: clip;
    }

/* .visual {
    background-image: var(--gradient-15);
    border-radius: 10px;
    block-size: 175px;
    overflow: clip;
    width: 112%;
    margin-left: -6% !important;
    margin-top: -5%;
  } */

    .img {
        display: block;
        inline-size: 100%;
        block-size: 100%;
        object-fit: cover;
    }

    .figcaption {
        font-weight: var(--font-weight-7);
        font-size: var(--font-size-2);
        font-family: var(--font-family-default);
    }
}

@layer layout {
    .chat {
        background-color: oklch(99% 0 287);
        block-size: 55svb;
        border-radius: var(--radius-3) var(--radius-3) 0px 0px;
        border-width: 0;
        box-shadow: var(--shadow-6);
        inline-size: min(1028px, 100%);
        inset-block-start: auto;
        margin-inline: auto;
        padding: 0;


        /* --opacityOK  */
        @media (prefers-reduced-transparency: no-preference) {
            backdrop-filter: blur(70px);
            background-color: oklch(99% 0 287/ 30%);
        }

        /* motionOK */
        @media (prefers-reduced-motion: no-preference) {
            animation: slide-out-down-dismiss 0.5s var(--ease-3);

            &:popover-open {
                /* Built-in animation from Open Props */
                animation: var(--animation-slide-in-up);
            }
        }
    }

    @keyframes slide-out-down-dismiss {
        from {
            display: block;
        }

        to {
            transform: translateY(100%);
        }
    }

    .chat-content-wrapper {
        display: grid;
        grid-template-rows: min-content 1fr;
        block-size: 100%;
    }

    .chat-header {
        border-bottom: var(--border-size-1) solid var(--gray-4);
        padding-block: 12px;
        padding-inline: 12px;
        display: grid;
        place-items: center end;
    }

    .chat-popover-close-btn {
        display: inline-grid;
        place-items: center;
        padding: 0;
        border-width: 0;
        block-size: 44px;
        inline-size: 44px;
        border-radius: var(--radius-round);
        cursor: pointer;
        background-color: var(--stone-2);
    }

    .chat-section {
        display: grid;
        grid-template-rows: 1fr min-content;
        padding-block: var(--size-5);
        padding-inline: var(--size-7);
    }

    .chat-input-container {
        display: grid;
        grid-template-columns: 1fr min-content;
        box-shadow: var(--shadow-4);
        border-radius: var(--radius-round);
        background-color: white;
        padding-inline: var(--size-px-4) var(--size-px-2);
        block-size: 58px;
        align-items: center;
    }

    .chat-textarea {
        font-size: var(--font-size-2);
        font-family: inherit;
        caret-color: blue;
        border-width: 0;
        background-color: transparent;
        outline-width: 0;
        outline: none;
        overflow: hidden;
        resize: none;
        block-size: var(--size-5);
    }

    .chat-submit-btn {
        color: blue;
        block-size: var(--size-px-8);
        inline-size: var(--size-px-8);
        border-width: 0;
        border-radius: var(--radius-round);
        background-color: transparent;
        cursor: pointer;
    }
}

@layer components {
    .btn {
        --_state-layer-op: 0%;
        --_state-layer-bg: oklch(1 0 0 / var(--_state-layer-op));
        background-color: transparent;
        font-weight: var(--font-weight-6);
        font-size: var(--font-size-1);
        font-family: var(--font-family-default);
        min-block-size: 40px;
        text-decoration: none;
        text-align: center;
        min-inline-size: max-content;
        display: inline-grid;
        place-items: center;
        border-radius: var(--radius-4);
        overflow: clip;
        isolation: isolate;
        -moz-user-select: none;
        -webkit-user-select: none;
        cursor: pointer;
        user-select: none;
        white-space: nowrap;
        padding: 0;
        border-width: 0;

        &:hover {
            --_state-layer-op: 20%;
            box-shadow: var(--shadow-2);
        }

        &:is(:active, :disabled, :focus-within) {
            --_state-layer-op: 12%;
        }

        &.filled {
            background-color: var(--gray-12);
            color: white;
        }

        &.primary {
            --_state-layer-bg: oklch(0 0 0 / var(--_state-layer-op));
            background-color: var(--primary);
        }

        .state-layer {
            border-radius: inherit;
            padding-block: 12px;
            padding-inline: var(--size-3);
            inline-size: 100%;
            display: inline-grid;
            place-items: center;
            background-color: var(--_state-layer-bg);
            transition-property: background-color, box-shadow;
            transition-duration: 0.2s;
            transition-timing-function: var(--ease-3);
        }
    }
}

.cap-element {
  text-transform: uppercase;
}


.footersome {
  padding: 60px 40px 10px 40px;
  color: #1e1e1e;
  font-size: 20px;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
}

.text-lnk {
  padding: 10px;
  color: #1e1e1e;
  font-size: 20px;
  text-align: center;
}

.footersome a {
  margin-right: 10px;
  text-decoration: none;
  color: inherit;
}

.a-no-dec {
  text-decoration: none;
}


/* Initially hide the element */
/* .slots-content {
  display: none;
  opacity: 0;
  transform: translateY(-20px);
} */

/* Styles applied when the ID matches the URL fragment (#slotsElement) */
/* Show the element */
/* Trigger the animation */
/* #slotsElement:target {
  display: block; 
  animation: slideIn 0.5s forwards; 
} */

/* Define the animation */
/* @keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */



/* Hide the checkbox as usual */
.hidden-checkpoint { display: none; }

/* The "Magic" Selector: 
   Find the checkbox, then find the 'main' sibling, 
   then find 'myElement' inside it. */
#toggle-element:checked ~ main #slotsElement {
  opacity: 1;
  visibility: visible;
  display: block; 
  transform: translateY(0);
}

/* Base styles for the hidden element */
.slots-content{
  opacity: 0;
  visibility: hidden;
  display: none; 
  transform: translateY(-20px);
  transition: all 0.5s ease;
}

/* Optional: Style the label to look like a button */
.button {
  display: inline-block;
  padding: 10px 20px;
  background: #4263eb;
  color: white;
  cursor: pointer;
  border-radius: 22px;
}

/* .button-a-primary{ & .state-layer{border-radius:inherit;padding-block:12px;padding-inline:var(--size-3);inline-size: 100%;display: inline-grid;place-items: center;background-color: var(--_state-layer-bg);transition-property: background-color, box-shadow;transition-duration: 0.2s;transition-timing-function: var(--ease-3);}} */

/* Hide the checkbox but keep it in the DOM for the anchor to find */
.state-toggle {
  position: absolute;
  opacity: 0;
}

/* Base state for content */
.content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s;
}

/* MAGIC: When the checkbox is checked, show the NEXT sibling (.content) */
.state-toggle:checked + .content {
  opacity: 1;
  visibility: visible;
}

/* Optional: Make the button look nice */
.button {
  display: inline-block;
  padding: 10px 20px;
  background: blue;
  color: white;
  text-decoration: none;
}

/* ----- menu ----- */


/* Target the immediate container holding the logo and the menu wrapper */
.w3-bar {
  display: flex;
  align-items: center; /* Vertically centers all items in the navbar */
  width: 100%;
}

/* Push the menu wrapper to the center of the available space */
.w3-bar > div:not(.lang-container):not(.required-field-if) {
  display: flex;
  justify-content: center;
  flex-grow: 1; /* Absorbs extra space to ensure true centering */
}

/* Ensure individual links inside the wrapper behave correctly */
.w3-bar > div a {
  display: inline-block;
}



/* ---------- */


/* Enable smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* Hide target sections by default */
/* .reveal-section {
  display: none; 
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
} */



.reveal-section {
  opacity: 0;
  display: none; 
  /* transform: translateY(0); */
/*   max-height: 1000px; Large enough to fit content */
  filter: blur(10px); /* Start blurred */
  /* transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease; */
    transition: opacity 0.6s ease, transform 0.4s ease, filter 0.3s ease;
  overflow: hidden;
}


/* This class is added by JS */
.reveal-section.active {
  display: grid; /* Switch to block first */
}

/* A tiny delay for the animation to kick in after display:block */
.reveal-section.visible {
  opacity: 1;
  /* transform: translateY(0); */
  filter: blur(0px); /* Sharp text */
}


/* 2. Triggers the actual visual transition */
.reveal-section.active.visible {
  opacity: 1;
  filter: blur(0px);
}

/* This class triggers the smooth disappearance */
.reveal-section.fade-out {
  opacity: 0;
/*   transform: translateY(-20px); Optional: slides upward slightly while fading */
  filter: blur(5px); /* Blurs out as it hides */
  max-index: 0;
  max-height: 0; /* Smoothly collapses the space so other elements slide up */
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}


/* The Glitch Animation Class */
.glitch-effect {
  animation: glitch-anim 0.3s linear;
}


/* Keyframes that slice and shift the element rapidly */
@keyframes glitch-anim {
  0% {
    clip-path: inset(40% 0 61% 0);
    transform: skew(0.3deg);
  }
  20% {
    clip-path: inset(92% 0 1% 0);
    transform: skew(-0.5deg);
  }
  40% {
    clip-path: inset(15% 0 80% 0);
    transform: skew(0.5deg);
  }
  60% {
    clip-path: inset(80% 0 5% 0);
    transform: skew(-0.3deg);
  }
  80% {
    clip-path: inset(3% 0 92% 0);
    transform: skew(0.8deg);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: skew(0deg);
  }
}



/* Basic button styling to ensure NO dead zones */
.nav-btn, .toggle-btn {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  border: none;
  background: #2196F3;
  color: white;
}

.nav-btn-l{
    cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  border: none;
  background: #2196F3;
  color: white;
  border-radius: 9999;
    background-color: var(--primary);
}

.icon-social-gh {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_gh.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-social-cp{
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_cp.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-social-hf {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_hf.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-social-bs {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_bs.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-social-gd {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_gd.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-social-dt {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_dt.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-social-sb{
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_stackblitz.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-social-x{
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_x.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-social-li{
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_li.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.icon-social-sus{
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_substack.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.icon-social-rd{
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../../static/icon/logo_reddit.svg');  /* Or icon.svg */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}



/* The container starts hidden and transparent */
#about, #contact {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 'active' makes it exist in the DOM (display: block) */
#about.active, #contact.active {
    display: block;
}

/* 'visible' triggers the actual animation */
#about.visible, #contact.visible {
    opacity: 1;
    transform: translateY(0);
}

.latest-layout {
  display: grid;
  grid-template-columns: 1fr 300px; /* Main content + 300px Sidebar */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .latest-layout {
    grid-template-columns: 1fr; /* Stack them on mobile */
  }
}

.services-title{
  font-size: 2.2rem !important;
    padding-bottom: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: .08em;
}


.services h3 {
    font-size: 1.3rem;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #f69b00;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.contact-title{
  font-size: 2.9rem !important;
}
.contact-section{
  padding-top: .1rem !important;
}

.contact-f{
  margin-left: auto;
  margin-right: 0px;
}


.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px; /* Main content + 300px Sidebar */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr; /* Stack them on mobile */
  }
  .contact-f{
  margin-left: auto;
  margin-right: auto;
}

}

/* #cookie-notice {
  font-size: 14px; padding: 1rem; text-align: center; position: fixed; bottom: 0; left: 0; right: 0;
  background: #333; color: #fff; z-index: 9999; display: none;
} */
/* #cookie-notice a { margin-left: 1rem; color: #fff; text-decoration: underline; cursor: pointer; }
@media (max-width: 768px) { #cookie-notice span { display: block; margin-bottom: 0.5rem; } }
 */



.cookie-notice {
  position: fixed;
  bottom: 50px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.cookie-notice.show {
  right: 20px;
}
.cookie-notice header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
/* header i {
  color: #4070f4;
  font-size: 32px;
}
header h2 {
  color: #4070f4;
  font-weight: 500;
} */
.cookie-notice .data {
  margin-top: 16px;
}
.cookie-notice .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
  color: #4070f4;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.cookie-notice .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #4070f4;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: #034bf1;
}
#declineBtn {
  border: 2px solid #4070f4;
  background-color: #fff;
  color: #4070f4;
}
#declineBtn:hover {
  background-color: #4070f4;
  color: #fff;
}

.hgp{
  margin-top: 20px;
}

.toc {
  border: 0px solid #f1f1f1 !important;
  background: none !important;
  box-shadow: 1px 1px 5px 2px rgba(196, 195, 195, 0.28) !important;
}

.toc__menu{
font-size: 1.5rem !important;
/* border: none !important; */
border: 0px solid #f1f1f1 !important;
background: none !important;
}


   .lang-container { position: relative; display: inline-block; }
        .lang-dropdown { 
            position: relative; 
            display: inline-block; 
            cursor: pointer; 
            background: #f1f1f1; 
            /* color: white;  */
            padding: 10px 15px; 
            border: none; 
            /* font-size: 16px;  */
        }
        .lang-content { 
            display: none; 
            position: relative; 
            /* background: #33333300;  */
            /* min-width: 120px;  */
            /* box-shadow: 0 8px 16px rgba(0,0,0,0.2);  */
            z-index: 1; top: 100%; right: 0; 
        }
        .lang-content a { 
            /* color: white;  */
            padding: 10px 15px; 
            text-decoration: none; 
            display: block; 
        }
        /* .lang-content a:hover { 
          background: #555; 
          border: #1e1e1e;
        } */
        .lang-container:hover .lang-content { display: block; }
        /* .current-lang { 
          background: #d6d6d600; 
        } */







        /* -------------- TMP  4 chat  */


           :root {
            --bg-gradient-start: #1c1c3a;
            --bg-gradient-end: #0c0c1e;
            --card-bg-light: rgba(255, 255, 255, 0.05); /* Lighter translucent background for cards */
            --card-bg-dark: rgba(0, 0, 0, 0.2); /* Darker translucent background for cards */
            --border-color: rgba(255, 255, 255, 0.1);
            --text-color-light: #2a2a2a;
            --text-color-dark: #b0b0b0;
            --primary-accent-chb: #7d7d7d; /* Soft purple */
            --secondary-accent-chb: #a8a8a8; /* Lighter purple */
            --chat-bubble-user: #f5f5f5;
            --chat-bubble-msg0bg: #f5f5f5;
            --chat-bubble-agent: rgba(255, 255, 255, 0.08);
        }

    

        /* Particle Background */
        .particle-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background-color: var(--primary-accent);
            border-radius: 50%;
            opacity: 0;
            animation: particleFadeMove linear infinite;
            box-shadow: 0 0 5px var(--primary-accent);
        }

        @keyframes particleFadeMove {
            0% { transform: translateZ(0) scale(0.5); opacity: 0; }
            10% { opacity: 0.2; }
            80% { opacity: 0.1; }
            100% { transform: translate3d(var(--x), var(--y), var(--z)) scale(var(--s)); opacity: 0; }
        }

        /* Main UI Container */
        .aether-ui-container {
            position: relative;
            z-index: 1;
            width: 95%;
            max-width: 800px;
            height: 95vh;
            max-height: 900px;
            background: var(--card-bg-dark); /* Fallback */
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--border-color);
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(142, 142, 236, 0.15);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transform-style: preserve-3d;
            animation: fadeInScale 0.8s ease-out;
        }

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




        .action-button {
            background: var(--card-bg-light);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 8px 15px;
            color: var(--text-color-light);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .action-button:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-accent);
            color: var(--primary-accent);
            box-shadow: 0 2px 10px rgba(142, 142, 236, 0.2);
            transform: translateY(-2px);
        }

        /* Chat History */
        .chat-history {
            flex-grow: 1;
            padding: 20px 30px;
            overflow-y: auto;
            scroll-behavior: smooth;
            -ms-overflow-style: none; /* IE and Edge */
            scrollbar-width: none; /* Firefox */
            transform: translateZ(10px); /* Lift chat history slightly */
        }

        .chat-history::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .message-container {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-end;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: messageFadeIn 0.5s ease-out forwards;
        }

        @keyframes messageFadeIn {
            to { opacity: 1; transform: translateY(0); }
        }

        .message-container.agent {
            justify-content: flex-start;
        }

        .message-container.user {
            justify-content: flex-end;
        }

        .message-bubble {
            max-width: 75%;
            padding: 12px 18px;
            border-radius: 20px;
            line-height: 1.5;
            
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .message-container.user .message-bubble {
            background-color: var(--chat-bubble-user);
            color: rgb(28, 28, 28);
            border-bottom-right-radius: 5px; /* Tail for user bubble */
        }

        .message-container.agent .message-bubble {
            /* background-color: var(--chat-bubble-agent); */
              background-color: var( --chat-bubble-msg0bg);
            color: var(--text-color-light);
            border-bottom-left-radius: 5px; /* Tail for agent bubble */
        }

        .message-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
            margin: 0 10px;
            /* background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent)); */
            background: #b1b1b1;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        .message-container.user .message-avatar { order: 2; }
        .message-container.agent .message-avatar { order: 1; }

        .loading-indicator {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 12px 18px;
            background-color: var(--chat-bubble-agent);
            border-radius: 20px;
            border-bottom-left-radius: 5px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .dot {
            width: 8px;
            height: 8px;
            background-color: var(--text-color-dark);
            border-radius: 50%;
            animation: dotPulse 1.4s infinite ease-in-out both;
        }
        .dot:nth-child(1) { animation-delay: -0.32s; }
        .dot:nth-child(2) { animation-delay: -0.16s; }
        .dot:nth-child(3) { animation-delay: 0s; }

        @keyframes dotPulse {
            0%, 80%, 100% { transform: scale(0); opacity: 0; }
            40% { transform: scale(1); opacity: 1; }
        }

        /* Chat Input Area */
        .chat-input-area {
            padding: 20px 30px;
            border-top: 1px solid var(--border-color);
            background: var(--card-bg-light);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 0 0 30px 30px;
            display: flex;
            gap: 15px;
            align-items: center;
            transform: translateZ(20px); /* Lift input area slightly */
        }

        .chat-input {
            flex-grow: 1;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 25px;
            padding: 12px 20px;
            color: var(--text-color-light);
            font-size: 1rem;
            outline: none;
            transition: all 0.2s ease-in-out;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .chat-input:focus {
            border-color: var(--primary-accent);
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3), 0 0 10px rgba(142, 142, 236, 0.3);
        }

        .chat-input::placeholder {
            color: var(--text-color-dark);
        }

        .action-icon-button {
            /* background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent)); */
            background: linear-gradient(45deg, var(--primary-accent-chb), var(--secondary-accent-chb));
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 1.3rem;
            color: white;
            box-shadow: 0 4px 15px rgba(142, 142, 236, 0.4);
            transition: all 0.2s ease-in-out;
        }

        .action-icon-button:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 20px rgba(142, 142, 236, 0.6);
        }

        .action-icon-button:active {
            transform: translateY(0) scale(0.98);
            box-shadow: 0 2px 5px rgba(142, 142, 236, 0.2);
        }

        .microphone-button.recording {
            background: linear-gradient(45deg, #ff6b6b, #ff9b9b);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.6);
            animation: pulseRed 1.2s infinite ease-in-out;
        }

        @keyframes pulseRed {
            0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 107, 107, 0.8); }
            100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); }
        }

       /* .shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored 0 20px 25px -5px #e2e8f0, 0 8px 10px -6px #e2e8f0: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
} */
