@import url(https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600&display=swap);

/* Definition for the 'Neptunes' font */
@font-face {
  font-family: 'Neptunes';
  src: url('/fonts/Neptunes.woff2') format('woff2'),
       url('/fonts/Neptunes.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Definition for the 'Sakana' font */
@font-face {
  font-family: 'Sakana';
  src: url('/fonts/Sakana.woff2') format('woff2'),
       url('/fonts/Sakana.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


.container,
img {
    max-width: 100%;
}

.nav-list,
ul {
    list-style: none;
}

.nav-link,
a {
    text-decoration: none;
}

.bar.end,
.bar.start {
    transition: transform 650ms cubic-bezier(.54, -.81, .57, .57);
}

.home,
.main {
    overflow-x: hidden;
}

.header h1,
.home__lux,
.nav-link:focus,
.nav-link:hover {
    -webkit-text-fill-color: transparent;
}

#leftSection h2,
body {
    font-family: var(--body-font);
}

#leftSection,
.about-text i,
.item .content,
label {
    text-align: left;
}

#leftSection h2,
#successMessage,
.about-text,
.banner .content h1,
.button,
.cta-success,
.home__data,
.quote-btn,
.section__title,
footer {
    text-align: center;
}

:root {
    --header-height: 3.5rem;
    --first-color: hsl(219, 69%, 56%);
    --first-color-alt: hsl(219, 69%, 52%);
    --title-color: hsl(219, 8%, 95%);
    --text-color: hsl(219, 8%, 75%);
    --text-color-light: hsl(219, 4%, 55%);
    --white-color: #fff;
    --body-color: hsl(0, 0%, 0%);
    --container-color: hsl(219, 4%, 7%);
    --body-font: 'Exo', sans-serif;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --font-medium: 500;
    --font-semi-bold: 600;
    --z-tooltip: 10;
    --z-fixed: 100;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

body {
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1,
h2,
h3 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

img {
    height: auto;
}

.container {
    margin: 0 auto;
    padding: 0 1rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding: 4.5rem 0 2rem;
}

.section__title {
    font-size: var(--h2-font-size);
    margin-bottom: 2.5rem;
}

.shape {
    background-color: hsla(220, 25%, 14%, .5);
    filter: blur(112px);
    border-radius: 50%;
}

.shape__big {
    width: 400px;
    height: 400px;
}

.shape__small {
    width: 300px;
    height: 300px;
}

.top-nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -100vh;
    z-index: 50;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 650ms cubic-bezier(1, 0, 0, 1);
}

.bar,
.home__lux,
.nav-link:focus,
.nav-link:hover {
    background: linear-gradient(to right, #08905a, #11fca6);
}

.menu-toggler {
    flex-direction: column;
    display: flex;
}

.nav-list{
    display: flex;
    flex-direction: column;
}

.top-nav.open {
    top: 0;
}

.nav-list {
    gap: 2rem;
    padding: 0;
    margin: 0;
    align-items: center;
}

li {
    margin: 0 2rem;
}

.nav-link {
    display: flex;
    font-family: 'Futura';
    flex-direction: row;
    color: #fff;
    font-size: 1.5rem;
    padding: 10px 15px;
    transition: .3s;
}

.nav-link:focus,
.nav-link:hover {
    background-clip: text;
    -webkit-background-clip: text;
}

.menu-toggler {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 4rem;
    height: 2.5rem;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1500;
    transition: transform 650ms ease-out;
}

#leftSection,
.nav {
    flex-direction: column;
}

#successMessage,
.home__button {
    transition: transform .5s, opacity .5s;
}

.menu-toggler.open {
    transform: rotate(-45deg);
}

.bar {
    width: 100%;
    height: 4px;
    border-radius: .8rem;
}

.bar.half {
    width: 50%;
}

.bar.start {
    transform-origin: right;
}

.menu-toggler.open .bar.start {
    transform: rotate(-450deg) translateX(.8rem);
}

.bar.end {
    align-self: flex-end;
    transform-origin: left;
}

.menu-toggler.open .bar.end {
    transform: rotate(-450deg) translateX(-.8rem);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}

.AJ_logo {
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.header h1 {
    font-size: 2.5rem;
    background: linear-gradient(to right, #07915a, #11fca6);
    background-clip: text;
    -webkit-background-clip: text;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-family: 'Sakana';
    margin: 0;
}

.home {
    position: relative;
    padding-top: 0.5rem;
}

.home__data {
    justify-content: center;
    align-items: center;
}

.home__title {
    font-size: var(--h1-font-size);
    margin-bottom: 1rem;
    font-family: 'Sakana';
}

.home__subtitle {
    font-size: 1.2rem;
    margin-bottom: .25rem;
    margin-top: 4rem;
}

.home__lux {
    font-weight: 400;
    background-clip: text;
    -webkit-background-clip: text;
    display: inline-flex;
    align-items: center;
}

.home__img {
    width: 70%;
    justify-self: center;
}

.home__button {
    position: relative;
    border: 2px solid #08905a;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    font-size: var(--small-font-size);
    color: var(--white-color);
    font-weight: var(--font-medium);
}

.review {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.home .shape__big,
.home .shape__small {
    position: absolute;
}

.home .shape__big {
    left: -9rem;
    top: -4rem;
}

.home .shape__small {
    right: -10rem;
    bottom: 3rem;
}

.home__button-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 3rem;
}

.home__button::before {
    content: '';
    border: 2px solid #02d98a;
    width: 90px;
    height: 90px;
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 12px #02d98a;
    transition: .3s;
    animation: 3s infinite pulse;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: .6;
    }
}

.penner-equations-demo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.penner-equations-demo .el {
    width: 2px;
    height: 2px;
    background-color: #02d98a;
    margin: 5px;
    transform: scale(1);
    transition: transform .1s;
}

#ctaContent {
    opacity: 0;
    transform: translateY(50px);
    transition: transform .6s ease-out, opacity .6s ease-out;
    visibility: 0;
    height: 0;
}

#ctaContent.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    height: auto;
}

#survey {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

#leftSection,
#rightSection {
    flex: 1;
    margin-left: 1rem;
    margin-right: 1rem;
}

#leftSection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#leftSection h2 {
    font-size: 2.5rem;
    color: #505050;
    text-align: center;
}

#iconsContainer {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 5rem;
}

.iconRow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.iconRow h1 {
    font-size: 1.5rem;
    color: transparent;
    -webkit-text-stroke: 1px hsl(158, 98%, 50%);
    -moz-text-stroke: 1px hsl(158, 98%, 50%);
}

#contact,
.about-text h2,
.about-text i,
.item .content .name,
.quote-btn:hover,
.service h3,
.service i,
button {
    color: #02d98a;
}

#rightSection,
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#surveyForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-size: 1rem;
    font-family: Futura;
}

input,
select,
textarea {
    font-size: 1rem;
    text-align: left;
    color: #02d98a;
    background-color: #1a1a1a;
    border-radius: 5px;
    width: 100%;
    padding: .5rem;
}

textarea {
    resize: vertical;
}

button {
    padding: 10px;
    font-size: 18px;
    background-color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    border: 1px solid #02d98a;
    border-radius: 5px;
}

#successMessage {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    background-color: #02d98a;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 18px;
    opacity: 0;
}

.hidden {
    display: none;
}

/* BANNER SECTION */
.banner {
    margin-top: 0;
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    /* This is key: It makes children share the same 3D space */
    transform-style: preserve-3d;
}

.banner .slider {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: 20s linear infinite autoRun;
}

@keyframes autoRun {
    from {
        transform: rotateX(-16deg) rotateY(0deg);
    }
    to {
        transform: rotateX(-16deg) rotateY(360deg);
    }
}

.banner .slider .item {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 200px;
    height: 250px;
    transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(550px);
}

.banner .slider .item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .content {
    position: absolute;
    /* This transform places the text on the same 3D plane and at the center of the rotation */
    transform: rotateX(-16deg) translateZ(10px);
}

.banner .content h1 {
    font-family: '';
    font-size: 12em;
    line-height: 1em;
    color: #000;
    /* The transform is now on the parent .content div */
    transform: none;
    -webkit-text-stroke: 2px hsl(158, 98%, 43%);
}

.banner .content h1::after {
    content: attr(data-content);
    position: absolute;
    inset: 0;
    color: transparent;
    -webkit-text-stroke: 2px hsl(158, 98%, 43%);
}

#about {
    padding: 50px 20px;
    margin-top: 2rem;
    margin-bottom: 10rem;
}

#about .container {
}

.about-text {
    font-size: 1rem;
    padding-left: 1rem;
}

.about-text h2 {
    font-size: 2rem;
}

.about-text li {
    font-size: 1.5rem;
}

.about-text i {
    font-size: 2rem;
}

#about .carousel {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: auto;
}

#about .carousel img {
    border-radius: 10px;
}

.carousel-caption {
    padding: 10px;
    border-radius: 5px;
    background: rgba(0,0,0,0.5);
}

.carousel-control-next,
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    outline: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    filter: invert(100%);
    transition: filter .3s;
}

.carousel-control-next:hover .carousel-control-next-icon,
.carousel-control-prev:hover .carousel-control-prev-icon {
    filter: invert(48%) sepia(84%) saturate(626%) hue-rotate(85deg) brightness(95%) contrast(101%);
}

#services {
    padding: 0 0;
}

#services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.service {
    padding: 20px;
    border-radius: 10px;
    transition: .3s ease-in-out;
    margin-bottom: 20px;
}

.service i {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.service h3 {
    font-size: 1.3rem;
}

.service p {
    font-size: 1rem;
    color: #ccc;
}

.service:hover {
    transform: scale(1.05);
    cursor: default;
}

.quote-btn {
    width: 300px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: .3s;
    padding: 10px 20px;
    display: block;
    margin: 20px auto;
}

.quote-btn:hover {
    cursor: pointer;
}

.review .testimonials .item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 65%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #212121;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: .5s;
    z-index: 3;
}

.testimonials .item:first-child,
.testimonials .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    color: #fff;
    transform: translate(0, -50%);
    display: none;
    z-index: 2;
}

.testimonials .item:nth-child(2) .content {
    display: block;
}

.testimonials .item:nth-child(3) {
    left: 50%;
}

.testimonials .item:nth-child(4) {
    left: calc(50% + 220px);
}

.testimonials .item:nth-child(5) {
    left: calc(50% + 440px);
}

.testimonials .item:nth-child(n+6) {
    left: calc(50% + 660px);
    opacity: 0;
}

.content .name {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0;
    animation: 1s ease-in-out forwards animate;
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: 1s ease-in-out .3s forwards animate;
}

.cta-success.active,
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.content button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: 1s ease-in-out .6s forwards animate;
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.button {
    width: 100%;
    position: absolute;
    bottom: 20px;
    z-index: 10;
}

.button button {
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: 1px solid #000;
    cursor: pointer;
    margin: 0 5px;
    transition: .3s;
}

.button button:hover {
    background: #232323;
    color: #303030;
}


#contact {
    width: 100%;
    background-color: #111;
    padding: 60px 20px;
    font-family: Poppins, sans-serif;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item,
.socials h4 {
    align-items: center;
    display: flex;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-info p {
    color: #aaa;
    margin-bottom: 30px;
    max-width: 400px;
}

.info-item {
    gap: 10px;
    margin-bottom: 15px;
    flex-direction: row;
}

.info-item i {
    height: 30px;
    width: 30px;
    object-fit: contain;
    filter: invert(74%) sepia(74%) saturate(3796%) hue-rotate(111deg) brightness(95%) contrast(101%);
}

.info-item h4 {
    color: #02d98a;
    margin: 0;
    font-size: 1rem;
}

.socials .highlight {
    display: inline-block;
    width: 30px;
    height: 12px;
    background-color: #02d98a;
    margin-right: 8px;
    border-radius: 2px;
}

.socials h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons a {
    color: #02d98a;
    width: 35px;
    margin-right: 15px;
    cursor: pointer;
    transition: transform .3s;
    gap: 1rem;
    font-size: 1.2rem;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.contact-form {
    background-color: #222;
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 320px;
    box-shadow: 0 0 10px rgba(0, 255, 170, .1);
    position: relative;
}

.contact-form::after,
.contact-form::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: #02d98a;
    top: 0;
    right: 0;
}

.contact-form::after {
    bottom: 0;
    left: 0;
    top: auto;
    right: auto;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.contact-form label {
    color: #02d98a;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    outline: 0;
    background: 0 0;
    border-bottom: 2px solid #02d98a;
    color: #fff;
    font-size: .95rem;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    width: 100px;
    padding: 10px;
    border: none;
    background-color: #02d98a;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color .3s;
}

.contact-form button:hover {
    background-color: #01a66a;
}

.cta-success {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    background-color: #02d98a;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform .5s, opacity .5s;
}

.cta-success.active {
    display: block;
}

footer {
    padding: 20px;
    color: #fff;
}

.timer-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 2rem;
    background-color: #111;
    color: #0f0;
    font-family: monospace;
    font-size: 1.5rem;
    border-top: 2px solid #333;
    flex-wrap: wrap;
}

.log-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.label {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: .5rem;
}

.value.lcd {
    font-size: 2rem;
    color: #0f0;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  text-align: center;
}

.large.row {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.col {
  padding: 20px;
}

#loading-screen .label {
  display: block;
  font-size: 2rem;
  font-family: 'Neptunes';
  margin-bottom: 10px;
  color: #b1b1b1;
}

.status, .time {
  font-size: 1.8rem;
  font-weight: bold;
  color: #02d98a;
}

/* Members Only*/
#members-only {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
#members-only.show {
  display: block;
  opacity: 1;
}
/* Base Style */
.circular-text-link {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  text-decoration: none;
}

.circular-text-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
}

.circular-svg {
  width: 100%;
  height: 100%;
  animation: rotateText 5s linear infinite;
}

.circular-svg text {
  fill: #02d98a;
  font-size: 1rem;
  font-family: 'Futura', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #02d98a;
  font-size: 18px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

/* Hover effect */
.circular-text-wrapper:hover .center-icon {
  transform: translate(-50%, -50%) scale(1.3);
}

@keyframes rotateText {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}

/*=============== MEDIA QUERIES ===============*/

@media (max-width:767px) {

    .header img{
        height: 100px;
        width: 70px;
    }
    .nav-list{
        padding-bottom: 20rem;
    }
    .home__title {
        font-size: 1.5rem;
    }

    #about {
    margin-top: 0;
    padding-top: 2rem;
    padding-bottom: 10rem;
}

    .about-text ul {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        gap: .3rem;
        padding-left: 0;
        list-style: none;
        text-align: center;
    }

    .about-text ul li {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .about-text ul i {
        font-size: 1.5rem;
    }

    .contact-form,
    .contact-info {
        min-width: 100%;
    }

    #contact {
        margin-top: 0;
        padding-top: 0;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .banner {
        height: 50vh;
        perspective: 500px;
    }
    
    .banner .slider .item {
        width: 150px;
        height: 200px;
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(250px);
    }

    .banner .content h1 {
        font-size: 25vw;
        position: relative;
        transform: translateZ(50px);
    }

    .item .content {
       width: 80%;
    max-width: 350px;
    left: 2rem;
    top: 4rem;
    bottom: auto;
    transform: none;
    background: rgba(0,0,0,0.7);
    padding: 1rem;
    border-radius: .5rem;
    text-align: left;
    }

    .content .name {
        font-size: 1.5rem;
    }

    .content .des {
        font-size: .9rem;
    }

    .circular-text-wrapper {
        width: 60px;
        height: 60px;
    }
}

@media screen and (min-width: 768px) {
    #survey {
        flex-direction: row;
        gap: 4rem;
    }

    #leftSection {
        align-items: flex-start;
    }

    #leftSection h2 {
        text-align: left;
    }

    .iconRow {
        flex-direction: row;
        gap: 10rem;
    }
}

/* Styling for the new See More button */
.see-more {
    background: transparent;
    border: 1px solid #02d98a;
    color: #02d98a;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 0.9rem;
    font-family: var(--body-font);
}

/* Review Modal Overlay */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.review-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.review-modal-content {
    background: var(--body-color);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #02d98a;
    width: 90%;
    max-width: 600px;
    position: relative;
    color: var(--text-color);
}

.review-modal-content h3 {
    color: #02d98a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-modal-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile-only text truncation */
@media (max-width: 767px) {
    .content .des {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}