body {
    background-color: black;
}

.banner-image {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.banner-image img {
    display: block;
    width: 100vw;
    text-align: center;
    filter: brightness(60%);
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.new-badge {
    font-size: 15px;
}

.new-badge span {
    position: absolute;
    top: 0;
}

@media (max-width: 1050px) {
    .banner-image img {
        height: 90vw;
    }
}
@media (max-width: 700px) {
    .banner-image img {
        height: 120vw;
    }
}

div.page-content {
    position: absolute;
    top: max(80px, 15vh);
    width: 100%;
}

div.main-banner div.banner-text {
    /*position: absolute;*/
    /*top: 270px;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    text-align: center;
}

div.main-banner div.banner-text h1 {
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 30%);
    font-size: 150px;
    font-weight: bolder;
    white-space: wrap;
}

div.main-banner div.banner-text h4 {
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 30%);
    font-size: 45px;
    margin-bottom: 30px;
}

div.main-banner div.banner-button-group button {
    box-shadow: 0 0 4px white;
    margin: 10px 10px;
    border-radius: 50px;
}

@media (max-width: 1078px) {
    div.main-banner div.banner-text h4 {
        font-size: 30px;
    }
}

@media (max-width: 700px) {
    div.main-banner div.banner-text h1 {
        font-size: 80px;
    }

    div.main-banner div.banner-button-group button {
        width: 70%;
    }
}

div.whats-new-container {
    /*position: absolute;*/
    /*bottom: -30%;*/
    /*z-index: 5;*/
    /*width: 80%;*/
    /*left: 10%;*/
    /*right: 10%;*/
    margin-top: 30vh;
}

@media (max-width: 486px) {
    div.whats-new-container {
        margin-top: 20vh;
    }
}

@media (max-width: 369px) {
    div.whats-new-container {
        margin-top: 15vh;
    }
}

div.whats-new-title {
    color: white;
    margin-top: 50px;
    text-align: left;
    margin-left: 12.5vw;
    z-index: 999;
}

@media (max-width: 768px) {
    div.whats-new-title {
        text-align: center;
        margin-left: 0;
    }
}

div.whats-new-title h2 {
    font-size: 40px;
    font-weight: bolder;
    margin-bottom: 20px;
}

div.whats-new-body {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0;
    color: white;
    border-radius: 16px;
    overflow: hidden;
    max-width: 75vw; /* Reduce width of the carousel */
    margin: 0 auto; /* Center the carousel */
    height: 300px; /* Fixed height */
    display: flex;
    align-items: center; /* Keep image centered vertically */
    justify-content: center; /* Keep image centered horizontally */
}

div.whats-new-body img {
    width: 100%;
    height: 300px; /* Ensures image height is fixed */
    max-width: none; /* Prevents shrinking */
    object-fit: cover; /* Ensures full coverage */
    object-position: center center; /* Keeps image centered */
    display: block;
    filter: opacity(0%);
}

/* Container for the carousel item and its caption */
div.carousel-item {
    position: relative;
    /* Ensure the darkener and caption are positioned correctly */
    overflow: hidden;
    /* Hide overflow content */
}

div.carousel-darkener.ecotrail-carousel {
    background: url("/images/ecotrail_mini.jpg") center center no-repeat;
    background-size: cover; /* Maintains aspect ratio and always covers */
    height: 300px; /* Fixed height */
    width: 100%; /* Full width */
    filter: brightness(50%) blur(3px);
}

div.carousel-darkener.library-carousel {
    background: url("/images/library_mini.jpg") center center no-repeat;
    background-size: cover; /* Maintains aspect ratio and always covers */
    height: 300px; /* Fixed height */
    width: 100%; /* Full width */
    filter: brightness(50%) blur(3px);
}

div.carousel-darkener.court-carousel {
    background: url("/images/bbc_mini.jpg") center center no-repeat;
    background-size: cover; /* Maintains aspect ratio and always covers */
    height: 300px; /* Fixed height */
    width: 100%; /* Full width */
    filter: brightness(50%) blur(3px);
}

div.carousel-darkener {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Place the darkener behind the caption */
    pointer-events: none;
    /* Ensure it doesn't interfere with interactions */
}

div.carousel-caption {
    position: absolute;
    top: 40%;
    /* Center vertically */
    left: 0;
    transform: translateY(-50%);
    /* Center vertically */
    width: 100%;
    padding: 20px;
    /* Adjust padding as needed */
    text-align: left;
    box-sizing: border-box;
    z-index: 1;
    /* Ensure the caption is above the darkener */
}

/* Optional: Adjust vertical alignment if needed */
div.carousel-caption h2,
div.carousel-caption p {
    text-shadow: 0 0 20px gray;
}

div.carousel-caption h2,
div.carousel-caption p,
div.carousel-caption button {
    margin-left: 20px;
}

div.carousel-caption h2 {
    font-size: 70px;
    font-weight: bold;
}

@media (max-width: 897px) {
    div.carousel-caption h2 {
        font-size: 50px;
    }
}

@media (max-width: 771px) {
    div.carousel-caption h2 {
        font-size: 30px;
    }
}

table.whats-new-table {
    width: 100vw;
    border-collapse: collapse;
    border: none;
}

td.button-td {
    width: 12.5vw;
    text-align: center;
}

td.carousel-td {
    width: 75vw;
    text-align: center;
}

div.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

button.button-td {
    width: 12.5vw;
}

div.carousel-td {
    width: 75vw;
}

.carousel-indicators {
    border-radius: 30px !important;
}

div.carousel-caption p {
    font-size: 20px;
}

.custom-carousel-controls {
    /*display: flex;*/
    pointer-events: auto;
    /* Allow the carousel itself to be clickable */
    z-index: 69420;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    /* Make the button size consistent */
    height: 50px;
    width: 50px;
    /*margin-top: 40px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.1s ease background-color;
}

#prevBtn, #prevBtn2 {
    margin-left: calc(6.25vw - 25px);
}

#nextBtn, #nextBtn2 {
    margin-right: calc(6.25vw - 25px);
}

.custom-carousel-controls button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.carousel-indicators button {
    border-radius: 5px !important;
    height: 10px !important;
    width: 50px !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
}

div.stack-carousel {
    justify-content: center;
    align-items: center;
    width: 100vw;
    display: none;
}

@media (max-width: 768px) {
    div.carousel-container {
        display: none;
    }
    div.stack-carousel {
        display: block;
    }
}

div.sc-item {
    height: 200px !important;
    margin-left: 5vw !important;
    margin-right: 5vw !important;
    border-radius: 16px !important;
    z-index: 12;
    position: relative;
    padding-top: 25px;
    margin-bottom: 25px;

}

div.stack-content {
    position: relative;
    color: white;
    text-align: center;
    margin: 25px 20px 0;
}

/* Optional: Adjust vertical alignment if needed */
div.stack-content h2,
div.stack-content p {
    text-shadow: 0 0 20px gray;
}

div.stack-content h2 {
    font-size: 30px;
    font-weight: bold;
    margin-top: 25px;
}

@media (max-width: 430px) {
    div.stack-content h2 {
        font-size: 25px;
    }
    div.stack-content p {
        font-size: 15px;
    }
}

div.sc-item div.stack-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Place the darkener behind the caption */
    pointer-events: none;
    /* Ensure it doesn't interfere with interactions */
    background-size: cover; /* Maintains aspect ratio and always covers */
    height: 200px; /* Fixed height */
    width: 100%; /* Full width */
    filter: brightness(50%) blur(2px);
    border-radius: 16px;
}

div.stack-eco div.stack-img {
    background: url("/images/ecotrail_mini.jpg") center center / cover no-repeat;
    object-fit: cover;
}

div.stack-lib div.stack-img {
    background: url("/images/library_mini.jpg") center center / cover no-repeat;
    object-fit: cover;
}

div.stack-bbc div.stack-img {
    background: url("/images/bbc_mini.jpg") center center / cover no-repeat;
    object-fit: cover;
}

div.stack-cnt div.stack-img {
    background: url("/images/canteen_mini.jpg") center center / cover no-repeat;
    object-fit: cover;
}

div.stack-sch div.stack-img {
    background: url("/images/scholar_mini.jpg") center center / cover no-repeat;
    object-fit: cover;
}

div.stack-spr div.stack-img {
    background: url("/images/spring_mini.jpg") center center / cover no-repeat;
    object-fit: cover;
}

div.stack-rej div.stack-img {
    background: url("/images/reju_mini.jpg") center center / cover no-repeat;
    object-fit: cover;
}

div.spotlight-facilities-container {

}

div.spotlight-facilities-title {
    color: white;
    margin-top: 80px;
    text-align: center;
}

div.spotlight-facilities-title h2 {
    font-size: 40px;
    font-weight: bolder;
    margin-bottom: 20px;
}

.spotlight-container {
    display: flex;
    justify-content: center;
    color: white;
}

@media (max-width: 768px) {
    .spotlight-container {
        display: none;
    }
}

.spotlight-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Ensure the image and text are spaced correctly */
    width: 90vw;
    margin: 50px 5vw;
    /* Ensure each item takes up the full width of the spotlight */
}

@media (max-width: 870px) {
    .spotlight-item {
        margin: 20px 5vw;
        /* Ensure each item takes up the full width of the spotlight */
    }
}

.spotlight-item img {
    min-width: 500px;
    height: 300px;
    object-fit: cover;
    /* Ensure the image covers the area without distortion */
    border-radius: 50px;

    transition: 0.3s ease min-width, 0.4s ease transform;
}

.spotlight-item img:hover {
    min-width: 550px;
}

@media (max-width: 1287px) {
    .spotlight-item img {
        min-width: 450px;
    }
    .spotlight-item img:hover {
        min-width: 500px;
    }
}

@media (max-width: 1010px) {
    .spotlight-item img {
        min-width: 400px;
        height: 250px;
        border-radius: 30px;
    }
    .spotlight-item img:hover {
        min-width: 450px;
    }
}

@media (max-width: 870px) {
    .spotlight-item img {
        min-width: 300px;
        height: 200px;
    }
    .spotlight-item img:hover {
        min-width: 350px;
    }
}

.spotlight-item .description {
    width: calc(100%);
    /* Adjust width to fit the remaining space */
    padding-left: 50px;
    padding-right: 50px;
}

.spotlight-item.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.spotlight-item img:hover {
    transform: rotate(2deg);
}
.spotlight-item.reverse img:hover {
    transform: rotate(-2deg);
}

.spotlight-item h1 {
    font-size: 4em;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 0 0 20px gray;
}

@media (max-width: 1185px) {
    .spotlight-item h1 {
        font-size: 3.5em;
    }
}

.spotlight-item hr {
    border: none;
    height: 6px;
    background-color: white;
    box-shadow: 0 0 30px white;
    margin-bottom: 10px;
    border-radius: 2px;
}

.spotlight-item p {
    font-size: 1.1em;
    line-height: 1.5;
}

@media (max-width: 1122px) {
    .spotlight-item h1 {
        font-size: 2.5em;
    }
    .spotlight-item p {
        font-size: 0.9em;
        line-height: 1.5;
    }
}

@media (max-width: 943px) {
    .spotlight-item h1 {
        font-size: 2em;
    }
    .spotlight-item p {
        font-size: 0.8em;
        line-height: 1.5;
    }
}

div.other-facilities-container {
    margin: 0 5vw 5vw;
    overflow-x: hidden;  /* Add this to prevent horizontal overflow */
}

.more-facilities .row {
    margin-left: 0;
    margin-right: 0;
}

div.other-facilities-title {
    color: white;
    margin-top: 80px;
    text-align: center;
}

div.other-facilities-title h2 {
    font-size: 40px;
    font-weight: bolder;
    margin-bottom: 20px;
}

.one-of-the-other-facilities {
    position: relative;
    width: 100%; /* Default width */
    height: 500px; /* Adjust as needed */
    overflow: hidden;
    border-radius: 20px; /* Ensure border-radius is visible */
    transition: all 0.3s ease; /* Smooth transition for width change */
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .one-of-the-other-facilities {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .one-of-the-other-facilities {
        height: 200px;
    }
}

.row {
    display: flex;
    transition: all 0.3s ease; /* Smooth transition for width changes */
}

.col {
    width: 100%;
}

.one-of-the-other-facilities {
    transition: 0.2s ease width, 0.4s ease transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

.one-of-the-other-facilities:hover {
    transition: 0.4s ease transform;
}

.one-of-the-other-facilities img {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px) !important;
    height: calc(100% + 8px);
    object-fit: cover;
}

.one-of-the-other-facilities .darkener {
    filter: brightness(60%) blur(3px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px; /* Ensure border-radius is applied */

    transition: 0.2s ease filter;
}

@media (min-width: 992px) {
    .one-of-the-other-facilities:hover .darkener {
        filter: brightness(75%) blur(0px);
    }
}

.one-of-the-other-facilities .content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -10%); /* Center both horizontally and vertically */
    text-align: center;
    color: white;
    z-index: 1; /* Ensure content is above the image */
    padding: 20px;
    width: 90%; /* Ensure content fits within the container */
    box-sizing: border-box; /* Include padding in width calculation */

    transition: 0.2s ease transform;
}

@media (max-width: 991px) {
    .one-of-the-other-facilities .content {
        transform: translate(-50%, -30%)
    }
}

@media (max-width: 767px) {
    .one-of-the-other-facilities .content {
        transform: translate(-50%, -40%)
    }
}

@media (min-width: 992px) {
    .one-of-the-other-facilities:hover .content {
        transform: translate(-50%, -40%);
    }
}



.one-of-the-other-facilities h1 {
    font-size: 2.5em; /* Adjust font size as needed */
    font-weight: bold;
    text-shadow: 0 0 10px gray; /* Softer, more diffuse shadow */
    margin: 0; /* Remove default margin */
}

.one-of-the-other-facilities p {
    font-size: 1.1em; /* Adjust as needed */
    margin: 10px 0 20px; /* Adjust margin */
}

@media (max-width: 767px) {
    .one-of-the-other-facilities h1 {
        font-size: 2em;
    }

    .one-of-the-other-facilities p {
        font-size: 0.8em;
    }

    .one-of-the-other-facilities button {
        font-size: 1.3em;
        height: 40px;
    }
}

.one-of-the-other-facilities button {
    cursor: pointer;
    display: inline-flex; /* Use inline-flex for proper centering */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15); /* translucent white */
    backdrop-filter: blur(8px);             /* the actual blur */
    -webkit-backdrop-filter: blur(8px);     /* safari support */
    border-radius: 8px;                      /* rounded corners for vibes */
    border: 1px solid rgba(255, 255, 255, 0.3); /* subtle border */
    color: white;                           /* text color */
    transition: background 0.3s ease;
}

@media (min-width: 992px) {
    .one-of-the-other-facilities:hover h1,
    .one-of-the-other-facilities:hover p,
    .one-of-the-other-facilities:hover button {
        text-shadow: 0 0 30px black;
        transition: 0.2s ease all;
    }

    .one-of-the-other-facilities:hover button {
        box-shadow: 0 0 30px black;
        transition: 0.2s ease all;
    }
}

.one-of-the-other-facilities button i {
    margin-left: 10px;
}

/*   ANIMATIONS   */
@keyframes scrollIconAnimation {
    0% {
        transform: translateY(0);
    }

    21.43% {
        transform: translateY(0);
    }

    42.86% {
        transform: translateY(0);
    }

    57.14% {
        transform: translateY(3px);
    }

    71.43% {
        transform: translateY(0);
    }

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

.hoverfloat {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hoverfloat:hover {
    transform: translateY(-3px) rotate(3deg);
}

div.bottom-space {
    height: 200px;
    margin-top: 190%;
}


/* Wrapper for halo */

.ai-halo{ position:relative; display:inline-block; border-radius:2.5rem; padding:3px; }

/* MAGNIFYING GLASS */
.input-icon       { position:relative; }
.search-icon{
  position:absolute; left:18px; top:50%; transform:translateY(-50%);
  font-size:1rem; color:#fff; opacity:.8; pointer-events:none; z-index:2;
}

/* OUTER BLOOM DO NOT DELTE ALTHOUGH LOOKS LIKE DUPLICATE*/
.ai-halo::before{
  content:""; position:absolute; inset:-14px; border-radius:inherit; pointer-events:none;
  background:radial-gradient(160% 120% at 20% 30%,rgba(145,110,255,.9)0%,rgba(145,110,255,.5)25%,rgba(255,63,163,.35)60%,transparent 90%);
  filter:blur(26px) saturate(180%); opacity:.9; z-index:-2;
}

.ai-halo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    --angle: 0deg;
    background: conic-gradient(
            from var(--angle),
            rgba(90, 120, 255, 0.6) 0deg,
            rgba(130, 95, 255, 0.55) 90deg,
            rgba(190, 80, 255, 0.5) 180deg,
            rgba(90, 120, 255, 0.6) 270deg,
            rgba(130, 95, 255, 0.55) 360deg
    );

    padding: 2px;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;

    filter: blur(4px);
    opacity: 0.85;
    z-index: 3; /* bring it on top */
    animation: spinBorder 6s linear infinite;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes spinBorder {
    to {
        --angle: 360deg;
    }
}
.ai-input{

border:none !important;          /* kills the white outline */
box-shadow:none !important;      /* kills any BS shadow */
}
/* DO NOT DELETE */
/* typing flash still works */
.ai-halo.typing::after{
    filter:blur(4px) saturate(220%);
}
/* ==========================================================
   ✨ Subtler AI halo  – keeps old look but with softer glow
   ========================================================== */

/* Outer bloom : less blur & lower opacity */
.ai-halo::before{
    filter:blur(14px) saturate(140%);
    opacity:.55;                           /* was .9 */
  }
  
  /* Border rim : thinner, softer colours, smoother mix */
.ai-halo:hover::after {
    filter: blur(6px) saturate(180%);
    opacity: 1;
}
  
  /* Typing flash : bump only a little */
  .ai-halo.typing::after{
    filter:blur(2.4px) saturate(140%);
  }
  
  /* Frosted fill : slightly darker so rim pops */
  .ai-input{
    background:rgba(0, 24, 48, .55);       /* dark plum tint */
    backdrop-filter:blur(10px) saturate(120%);
    color: white;
  }

.ai-halo:active::after {
    filter: blur(7px) saturate(250%);
    opacity: 1;
}

  .ai-input::placeholder {
    color: rgba(255, 255, 255, 0.53) !important;
    opacity: 1 !important;
  }
/* keep the input inside the rim without clipping */
.ai-halo{ overflow:hidden; }                 /* clip anything that leaks */

.ai-input{
  box-sizing:border-box;                     /* include rim padding in 100 % */
  width:100%;
  border-radius:inherit;                     /* keeps perfect pill */
}
.ai-halo::after{
    z-index: 2 !important;     /* move rim above the input */
    pointer-events: none;      /* keep clicks on the field */
  }

/* Enhanced magical particles floating around */
.ai-halo::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: inherit;
    pointer-events: none;
    background:
            radial-gradient(circle at 20% 50%, rgba(147, 112, 255, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(255, 63, 163, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 50% 20%, rgba(90, 120, 255, 0.25) 0%, transparent 50%);
    filter: blur(20px) saturate(200%);
    opacity: 0.8;
    z-index: -2;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

/* Pulsing glow animation */
@keyframes pulseGlow {
    0% {
        filter: blur(20px) saturate(200%);
        opacity: 0.6;
    }
    100% {
        filter: blur(25px) saturate(250%);
        opacity: 1;
    }
}

/* Enhanced border with more colors */
.ai-halo::after {
    background: conic-gradient(
            from var(--angle),
            rgba(90, 120, 255, 0.8) 0deg,
            rgba(147, 112, 255, 0.9) 60deg,
            rgba(255, 63, 163, 0.8) 120deg,
            rgba(255, 100, 200, 0.7) 180deg,
            rgba(130, 95, 255, 0.8) 240deg,
            rgba(90, 120, 255, 0.8) 300deg,
            rgba(90, 120, 255, 0.8) 360deg
    );
    filter: blur(3px) saturate(180%);
    animation: spinBorder 8s linear infinite, borderPulse 3s ease-in-out infinite alternate;
}

/* Border pulse effect */
@keyframes borderPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Enhanced typing effect with sparkles */
.ai-halo.typing::after {
    filter: blur(1px) saturate(300%) brightness(120%);
    animation: spinBorder 4s linear infinite, typingSparkle 0.6s ease-in-out infinite;
}

@keyframes typingSparkle {
    0%, 100% {
        filter: blur(1px) saturate(300%) brightness(120%);
    }
    50% {
        filter: blur(2px) saturate(350%) brightness(140%);
    }
}

/* Magical hover effect */
.ai-halo:hover::before {
    animation: pulseGlow 2s ease-in-out infinite alternate, hoverFloat 1.5s ease-in-out infinite;
}

@keyframes hoverFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* Input focus magic */
.ai-input:focus {
    background: rgba(15, 25, 60, 0.7);
    backdrop-filter: blur(15px) saturate(150%);
    transition: all 0.3s ease;
}

/* Icon glow effect */
.search-icon {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.ai-halo:hover .search-icon,
.ai-halo.typing .search-icon {
    color: rgba(147, 112, 255, 0.9);
    filter: drop-shadow(0 0 12px rgba(147, 112, 255, 0.6));
}

/* Magical shimmer effect on the input */
.ai-input {
    position: relative;
    background: rgba(0, 24, 48, 0.6);
    backdrop-filter: blur(12px) saturate(140%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-input::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
    );
    transition: left 0.6s ease;
}

.ai-halo:hover .ai-input::before {
    left: 100%;
}

/* No Results Message Styling */
.no-results-container {
    margin: 40px 0;
    padding: 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.no-results-container.show {
    opacity: 1;
    transform: translateY(0);
}

.no-results-heading {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.no-results-subtext {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .no-results-heading {
        font-size: 2em;
    }

    .no-results-subtext {
        font-size: 1em;
    }
}
