/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --white-color: hsl(0, 0%, 100%);
    --black-color: hsl(0, 0%, 0%);
    --bg-color: hsl(0, 2%, 10%);
    --bg-transparent: hsla(0, 2%, 10%);
    --bg2-transparent: hsla(0, 2%, 10%, 0.99);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --normal-font-size: 1rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background: #1a1919;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    /* max-width: 1120px; */
    max-width: 1800px;
    margin-inline: 1.5rem;
}








/* ================= PRELOADER ================= */
/* Preloader container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  /* change if needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

/* Hidden state (when finished) */
#preloader.hidden {
  opacity: 0;
  transform: translateY(-30px);
  /* slide up */
  visibility: hidden;
}

/* Loader text styling */
#loader-text {
  margin-bottom: 20px;
  /* space between % and loader */
  font-weight: bold;
  font-size: 2rem;
  color: #9ff14e;
  /* your theme color */
  text-align: center;
}

/* Loader animation */
/* .loader {
  width: 48px;
  height: 48px;
  position: relative;
}

.loader:before {
  content: '';
  width: 48px;
  height: 5px;
  background: #000;
  opacity: 0.25;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}

.loader:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  animation: bxSpin 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}

@keyframes bxSpin {
  17% {
    border-bottom-right-radius: 3px;
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, .9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow {

  0%,
  100% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1);
  }
} */

/* HTML: <div class="loader"></div> */
.loader {
  width: 80px;
  aspect-ratio: 1;
  border: 10px solid #0000;
  padding: 5px;
  box-sizing: border-box;
  background: 
    radial-gradient(farthest-side,#fff 98%,#0000 ) 0 0/20px 20px no-repeat,
    conic-gradient(from 90deg at 10px 10px,#0000 90deg,#fff 0) content-box,
    conic-gradient(from -90deg at 40px 40px,#0000 90deg,#fff 0) content-box,
    #000;
  filter: blur(4px) contrast(10);
  animation: l11 2s infinite;
}
@keyframes l11 {
  0%   {background-position:0 0}
  25%  {background-position:100% 0}
  50%  {background-position:100% 100%}
  75%  {background-position:0% 100%}
  100% {background-position:0% 0}
}

/* ================= PRELOADER /END ================= */

/*=============== HEADER & NAV ===============*/
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  /* background-color: var(--bg-transparent); */
  background-color: transparent;
  transition: background-color 0.4s ease;
  z-index: var(--z-fixed);
}

/* When scrolled */
.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-medium);
}

/* Style the picture container */
.nav__logo picture {
  display: block;
  width: 200px;
  height: auto;
}

/* Make the image fill the picture container responsively */
.nav__logo picture img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
}

/* Responsive scaling */
@media screen and (max-width: 1150px) {
  .nav__logo picture {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .nav__logo picture {
    width: 120px;
  }
  .nav{
    padding: 20px 10px;
  }
}

.nav__close,
.nav__toggle {
  display: flex;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {

  .nav__menu {
    position: fixed;
    top: 0;
    left: -100%;
    /* hide it completely when closed */
    width: 100%;
    height: 100vh;
    /* full viewport */
    background-color: var(--bg2-transparent);
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s ease;
    overflow-y: auto;
    /* allow scrolling inside */
    z-index: var(--z-fixed);
    /* make sure it sits above navbar but not always on top */
  }

  /* When menu is open */
  .show-menu {
    left: 0;
    /* slide in */
  }


  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__social__desk {
    display: none;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }

  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }

  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }

  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }

  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}


.nav__list,
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #78ff00;
  transition: width .4s ease-out;
  box-shadow: 0px 02px 6px #78ff00, 0px 02px 6px #78ff00;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
  /* box-shadow: 8px 8px 80px #78ff00, 8px 8px 80px #78ff00; */
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: all .4s ease;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
  color: #78ff00;
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + .5rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
    margin-right: 90px;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }

  .nav__social__desk {
    display: flex;
    column-gap: 1rem;
  }

  .nav__social {
    display: none;
  }

}

/*=============== DROPDOWN MENU STYLES ===============*/

/* Dropdown container */
.nav__item--dropdown {
  position: relative;
}

/* Dropdown icon */
.nav__dropdown-icon {
  font-size: 1.5rem !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-left: 0.5rem;
  transition: transform .3s ease;
}

/* Rotate icon when dropdown is active */
.nav__item--dropdown.dropdown-active .nav__dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav__dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
}

/* Show dropdown */
.nav__item--dropdown.dropdown-active .nav__dropdown {
  max-height: 500px;
  opacity: 1;
  margin-top: 1.5rem;
}

/* Dropdown item */
.nav__dropdown-item {
  padding-left: 2rem;
}

/* Dropdown link */
.nav__dropdown-link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
  padding: 0.75rem 0;
}

.nav__dropdown-link i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  opacity: 1;
  visibility: visible;
  transition: transform .3s ease, color .3s ease;
}

.nav__dropdown-link span {
  position: relative;
  transition: margin .4s;
}

.nav__dropdown-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #78ff00;
  transition: width .4s ease-out;
  box-shadow: 0px 02px 6px #78ff00, 0px 02px 6px #78ff00;
}

/* Dropdown link hover animation */
.nav__dropdown-link:hover i {
  transform: translateX(0.25rem);
  color: #78ff00;
}

.nav__dropdown-link:hover span::after {
  width: 100%;
}

/* Desktop dropdown styles */
@media screen and (min-width: 1150px) {
  
  /* Remove dropdown icon rotation for desktop hover */
  .nav__item--dropdown:hover .nav__dropdown-icon {
    transform: rotate(180deg);
  }
  
  /* Position dropdown absolutely on desktop */
  .nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
    padding: 1rem 0;
    border-radius: 0.5rem;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
  }
  
  /* Show dropdown on hover for desktop */
  .nav__item--dropdown:hover .nav__dropdown {
    max-height: 500px;
    opacity: 1;
  }
  
  /* Dropdown item spacing for desktop */
  .nav__dropdown-item {
    padding: 0;
  }
  
  /* Dropdown link styles for desktop */
  .nav__dropdown-link {
    font-size: var(--normal-font-size);
    padding: 0.75rem 1.5rem;
    display: flex;
    width: 100%;
  }
  
  .nav__dropdown-link i {
    font-size: 1.25rem;
  }
  
  /* Adjust main nav link for dropdown items on desktop */
  .nav__item--dropdown > .nav__link {
    display: flex;
    align-items: center;
  }
  
  .nav__item--dropdown > .nav__link .nav__dropdown-icon {
    margin-left: 0.25rem;
    font-size: 1.25rem !important;
  }
  
  /* Keep parent nav link hovered when hovering dropdown */
  .nav__item--dropdown:hover > .nav__link span {
    margin-left: 2.5rem;
  }
  
  .nav__item--dropdown:hover > .nav__link i:not(.nav__dropdown-icon) {
    opacity: 1;
    visibility: visible;
  }
  
  .nav__item--dropdown:hover > .nav__link span::after {
    width: 100%;
  }
  
  /* Prevent sibling fade when hovering dropdown parent */
  .nav__list:has(.nav__item--dropdown:hover) .nav__link:not(.nav__item--dropdown:hover > .nav__link) {
    opacity: .4;
  }
}

/* =============== NAVBAR /END ================== */









/* ===============HERO===================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: #1a1919;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 6rem;
    overflow: hidden;
}

.content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.badge {
    display: inline-block;
    background: transparent;
    border: 1px solid #9ff14e;
    color: #9ff14e;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    color: #fff;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #9ff14e;
    font-size: 4rem;
}

.subtitle {
    color: #a0a0a0;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #9ff14e;
    color: #1a1919;
}

.btn-primary:hover {
    background: #8de03d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #9ff14e;
    border: 2px solid #9ff14e;
}

.btn-secondary:hover {
    background: #9ff14e;
    color: #1a1919;
}

/* Chatbot Animation Container */
.chatbot-demo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 600px;
}

.chat-window {
    width: 400px;
    background: #252525;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chat-header {
    background: #2a2a2a;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid #333;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: #9ff14e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a1919;
    font-size: 1.2rem;
}

.chat-info h3 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.chat-status {
    color: #9ff14e;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #9ff14e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.chat-body {
    padding: 1.5rem;
    height: 350px;
    overflow: hidden;
}

.message {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: messageSlideIn 0.4s ease forwards;
}

.message.bot {
    display: flex;
    gap: 0.8rem;
    animation-delay: 1s;
}

.message.bot1 {
    display: flex;
    gap: 0.8rem;
    animation-delay: 3s;
}

.message.user {
    display: flex;
    justify-content: flex-end;
    animation-delay: 2s;
}

@keyframes messageSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: #9ff14e;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a1919;
    font-size: 0.9rem;
}

.message-content {
    background: #9ff14e;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    color: #1a1919;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 75%;
}

.message.user .message-content {
    background: #2a2a2a;
    color: #e0e0e0;
}

.typing-indicator {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: messageSlideIn 0.4s ease forwards;
    animation-delay: 9.5s;
}

.typing-dots {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    gap: 0.4rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

.chat-input {
    padding: 1rem 1.5rem;
    background: #2a2a2a;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-input input {
    flex: 1;
    background: #1a1919;
    border: 1px solid #404040;
    padding: 0.7rem 1rem;
    border-radius: 20px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.send-btn {
    width: 36px;
    height: 36px;
    background: #9ff14e;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.send-btn:hover {
    transform: scale(1.1);
}

.send-icon {
    width: 18px;
    height: 18px;
    fill: #1a1919;
}

/* Floating elements */
.floating-badge {
    position: absolute;
    background: #2a2a2a;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    color: #9ff14e;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #404040;
    animation: float 3s ease-in-out infinite;
}

.badge1 {
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.badge2 {
    bottom: 15%;
    right: -80px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 3rem 2rem;
        text-align: center;
        margin-top: 20px;
    }

    .content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .cta-container {
        justify-content: center;
    }

    h1 {
        font-size: 3rem;
    }

    .chat-window {
        width: 100%;
        max-width: 400px;
    }

    .floating-badge {
        display: none;
    }
}

/* ================HERO-END====================== */







/* =================Feature Section================== */
.features-section {
    min-height: 100vh;
    padding: 80px 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #9ff14e, #7bc93e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #aaa;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-content h3 {
    font-size: 2.5rem;
    color: #9ff14e;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    background: rgba(159, 241, 78, 0.1);
    border: 1px solid #9ff14e;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #9ff14e;
}

.feature-animation {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-box {
    width: 100%;
    height: 100%;
    background: rgba(159, 241, 78, 0.05);
    border: 2px solid #9ff14e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Website Guide Animation */
.guide-animation {
    width: 80%;
    height: 80%;
    position: relative;
}

.browser-window {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(159, 241, 78, 0.2);
}

.browser-header {
    height: 30px;
    background: #333;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #9ff14e;
    animation: pulse 2s infinite;
}

.browser-content {
    padding: 20px;
    height: calc(100% - 30px);
    position: relative;
}

.guide-path {
    position: absolute;
    stroke: #9ff14e;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-in-out infinite;
}

/* Lead Generation Animation */
.lead-animation {
    width: 80%;
    height: 80%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    width: 280px;
    height: 320px;
    background: rgba(159, 241, 78, 0.05);
    border: 2px solid #9ff14e;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.form-header {
    font-size: 1.2rem;
    color: #9ff14e;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-field {
    width: 100%;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(159, 241, 78, 0.3);
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.field-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(159, 241, 78, 0.2), rgba(159, 241, 78, 0.1));
    width: 0;
}

.form-field:nth-child(2) .field-fill {
    animation: fillField 1.5s ease-in-out 0.5s forwards;
}

.form-field:nth-child(3) .field-fill {
    animation: fillField 1.5s ease-in-out 1.2s forwards;
}

.form-field:nth-child(4) .field-fill {
    animation: fillField 1.5s ease-in-out 1.9s forwards;
}

.field-label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(159, 241, 78, 0.6);
    font-size: 0.85rem;
    z-index: 1;
}

.submit-btn {
    width: 100%;
    height: 50px;
    background: #9ff14e;
    border: none;
    border-radius: 8px;
    color: #1a1919;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
    opacity: 0;
    animation: btnAppear 0.5s ease 2.8s forwards;
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 1s ease-out 3.5s;
}

.success-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80px;
    height: 80px;
    background: #9ff14e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: successPop 0.6s ease 4s forwards;
}

.success-check::before {
    content: '✓';
    font-size: 40px;
    color: #1a1919;
    font-weight: bold;
}

/* Q&A Animation */
.qna-animation {
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.chat-bubble {
    padding: 15px 20px;
    border-radius: 20px;
    max-width: 70%;
    opacity: 0;
    animation: fadeInBubble 1s ease forwards;
}

.chat-bubble.user {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-end;
    animation-delay: 0s;
    color: #ffffff;
}

.chat-bubble.bot {
    background: #9ff14e;
    color: #1a1919;
    align-self: flex-start;
    animation-delay: 1s;
}

.typing {
    display: flex;
    gap: 5px;
    padding: 15px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #9ff14e;
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Closing Animation */
.closing-animation {
    width: 80%;
    height: 80%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-circle {
    width: 150px;
    height: 150px;
    border: 4px solid #9ff14e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: dealPulse 2s ease-in-out infinite;
}

.checkmark {
    width: 60px;
    height: 60px;
    border: 4px solid #9ff14e;
    border-radius: 50%;
    position: relative;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 8px;
    width: 15px;
    height: 30px;
    border: solid #9ff14e;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
    animation: checkmarkDraw 1s ease forwards;
}

/* All-in-One Animation */
.allinone-animation {
    width: 80%;
    height: 80%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-block {
    background: linear-gradient(135deg, rgba(159, 241, 78, 0.2), rgba(159, 241, 78, 0.05));
    border: 1px solid #9ff14e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9ff14e;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 1000;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1000;
    }
}

@keyframes fillField {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes btnAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@keyframes successPop {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes fadeInBubble {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingDot {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

@keyframes dealPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(159, 241, 78, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(159, 241, 78, 0);
    }
}

@keyframes checkmarkDraw {
    from {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }

    to {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

@media (max-width: 968px) {
    .feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .feature-content h3 {
        font-size: 2rem;
    }
}
   .animation-box {
            width: 100%;
            height: 100%;
            background: rgba(159, 241, 78, 0.05);
            border: 2px solid #9ff14e;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* AI Appointment Booking Animation */
        .appointment-animation {
            width: 85%;
            height: 85%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 20px;
            gap: 15px;
            overflow: hidden;
        }

        .appointment-bubble {
            padding: 12px 18px;
            border-radius: 18px;
            max-width: 75%;
            opacity: 0;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .appointment-bubble.appointment-user {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .appointment-bubble.appointment-bot {
            background: #9ff14e;
            color: #1a1919;
            align-self: flex-start;
            border-bottom-left-radius: 4px;
            font-weight: 500;
        }

        .appointment-typing {
            align-self: flex-start;
            padding: 12px 18px;
            background: rgba(159, 241, 78, 0.3);
            border-radius: 18px;
            border-bottom-left-radius: 4px;
            display: flex;
            gap: 5px;
            opacity: 0;
        }

        .appointment-typing-dot {
            width: 8px;
            height: 8px;
            background: #9ff14e;
            border-radius: 50%;
            animation: appointmentTypingDot 1.4s infinite;
        }

        .appointment-typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .appointment-typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        .appointment-calendar-widget {
            align-self: flex-start;
            background: rgba(159, 241, 78, 0.1);
            border: 1px solid #9ff14e;
            border-radius: 12px;
            padding: 15px;
            max-width: 65%;
            opacity: 0;
        }

        .appointment-widget-header {
            color: #9ff14e;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .appointment-date-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .appointment-date-option {
            padding: 10px 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(159, 241, 78, 0.3);
            border-radius: 8px;
            color: #9ff14e;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .appointment-date-option.appointment-selected {
            background: #9ff14e;
            color: #1a1919;
            font-weight: 600;
            transform: scale(1.02);
        }

        .appointment-confirmation-card {
            align-self: center;
            background: linear-gradient(135deg, rgba(159, 241, 78, 0.2), rgba(159, 241, 78, 0.05));
            border: 2px solid #9ff14e;
            border-radius: 15px;
            padding: 20px;
            width: 80%;
            opacity: 0;
            text-align: center;
        }

        .appointment-confirmation-icon {
            width: 60px;
            height: 60px;
            background: #9ff14e;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: appointmentSuccessPulse 0.6s ease;
        }

        .appointment-confirmation-icon::before {
            content: '✓';
            font-size: 35px;
            color: #1a1919;
            font-weight: bold;
        }

        .appointment-confirmation-text {
            color: #9ff14e;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .appointment-confirmation-details {
            color: rgba(159, 241, 78, 0.7);
            font-size: 0.85rem;
        }

        /* Animation keyframes */
        @keyframes appointmentFadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes appointmentTypingDot {
            0%, 60%, 100% {
                transform: translateY(0);
            }
            30% {
                transform: translateY(-8px);
            }
        }

        @keyframes appointmentSuccessPulse {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Timing classes */
        .appointment-bubble-1 { animation: appointmentFadeInUp 0.5s ease 0.5s forwards; }
        .appointment-bubble-2 { animation: appointmentFadeInUp 0.5s ease 1.5s forwards; }
        .appointment-bubble-3 { animation: appointmentFadeInUp 0.5s ease 2.5s forwards; }
        .appointment-bubble-4 { animation: appointmentFadeInUp 0.5s ease 4s forwards; }
        .appointment-bubble-5 { animation: appointmentFadeInUp 0.5s ease 5s forwards; }
        .appointment-bubble-6 { animation: appointmentFadeInUp 0.5s ease 6.5s forwards; }
        .appointment-bubble-7 { animation: appointmentFadeInUp 0.5s ease 7.5s forwards; }
        .appointment-bubble-8 { animation: appointmentFadeInUp 0.5s ease 9s forwards; }

        .appointment-typing-1 { animation: appointmentFadeInUp 0.3s ease 1s forwards; }
        .appointment-typing-2 { animation: appointmentFadeInUp 0.3s ease 3.5s forwards; }
        .appointment-typing-3 { animation: appointmentFadeInUp 0.3s ease 6s forwards; }
        .appointment-typing-4 { animation: appointmentFadeInUp 0.3s ease 8.5s forwards; }

        .appointment-widget-1 { animation: appointmentFadeInUp 0.5s ease 4.5s forwards; }
        .appointment-card-1 { animation: appointmentFadeInUp 0.6s ease 9.5s forwards; }

/* ================Feature Section End================== */








/* ===================PRICING================= */
.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 90px;
    margin-top: 90px;
    padding: 0 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #9ff14e;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #ccc;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #252525;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 2px solid #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #9ff14e;
    box-shadow: 0 20px 40px rgba(159, 241, 78, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #9ff14e;
    color: #1a1919;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #9ff14e;
    font-weight: bold;
}

.plan-subtitle {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 20px;
    min-height: 40px;
}

.price-wrapper {
    margin-bottom: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
}

.custom-price {
    font-size: 2.5rem;
}

.price-period {
    font-size: 1rem;
    color: #999;
    margin-left: 5px;
}

.price-range {
    color: #9ff14e;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    color: #ddd;
    font-size: 0.95rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.checkmark1 {
    color: #9ff14e;
    margin-right: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-button {
    width: 100%;
    padding: 18px;
    background: #9ff14e;
    color: #1a1919;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.cta-button:hover {
    background: #8dd946;
    transform: scale(1.05);
}

.annual-card .cta-button {
    background: linear-gradient(135deg, #9ff14e 0%, #7bc93a 100%);
}

@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .plan-subtitle {
        min-height: auto;
    }
}

/* ===================PRICING END================= */










/* =============WHY============ */
.radon-benchmark-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 90px;
    margin-bottom: 90px;
}

.radon-benchmark-header {
    text-align: center;
    margin-bottom: 80px;
}

.radon-benchmark-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #9ff14e, #7acc3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.radon-benchmark-subtitle {
    font-size: 1.3rem;
    color: #888;
}

.radon-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.radon-comparison-thead-cell {
    padding: 30px 40px;
    text-align: left;
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(159, 241, 78, 0.3);
}

.radon-comparison-thead-cell:first-child {
    color: #888;
}

.radon-comparison-thead-cell:nth-child(2) {
    color: #777;
}

.radon-comparison-thead-cell-highlight {
    color: #9ff14e;
    position: relative;
}



.radon-comparison-row {
    transition: all 0.3s ease;
}

.radon-comparison-row:hover {
    background: rgba(159, 241, 78, 0.03);
}

.radon-comparison-cell {
    padding: 25px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.05rem;
}

.radon-comparison-cell-feature {
    color: #aaa;
    font-weight: 500;
}

.radon-comparison-cell-traditional {
    color: #999;
}

.radon-comparison-cell-radon {
    color: #9ff14e;
    font-weight: 600;
}

.radon-icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2rem;
}

.radon-icon-check {
    color: #9ff14e;
}

.radon-icon-cross {
    color: #ff6b6b;
}

@media (max-width: 968px) {
    .radon-comparison-table {
        display: block;
        overflow-x: auto;
    }

    .radon-comparison-thead-cell,
    .radon-comparison-cell {
        padding: 20px 25px;
        font-size: 0.95rem;
    }

    .radon-benchmark-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {

    .radon-benchmark-header {
        margin-bottom: 50px;
    }

    .radon-benchmark-title {
        font-size: 2rem;
    }

    .radon-benchmark-subtitle {
        font-size: 1rem;
    }

    .radon-comparison-table thead,
    .radon-comparison-table tbody,
    .radon-comparison-table tr,
    .radon-comparison-table td,
    .radon-comparison-table th {
        display: block;
    }

    .radon-comparison-thead-cell-highlight::before {
        display: none;
    }

    .radon-comparison-row {
        margin-bottom: 40px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(159, 241, 78, 0.1);
    }

    .radon-comparison-cell {
        padding: 20px;
        text-align: left;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .radon-comparison-cell-feature {
        background: rgba(159, 241, 78, 0.08);
        font-size: 1.15rem;
        color: #9ff14e;
        font-weight: 600;
        border-bottom: 2px solid rgba(159, 241, 78, 0.3);
    }

    .radon-comparison-cell-traditional {
        padding-left: 20px;
    }

    .radon-comparison-cell-traditional::before {
        content: 'Traditional: ';
        color: #666;
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .radon-comparison-cell-radon {
        padding-left: 20px;
        border-bottom: none;
    }

    .radon-comparison-cell-radon::before {
        content: 'Radon One: ';
        color: #9ff14e;
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .radon-comparison-cell:last-child {
        padding-bottom: 25px;
    }

    .radon-comparison-table thead {
        display: none;
    }
}

/* =============WHY END============ */










/* ================== CTA section ======================= */
.contain-cta1 {
    background: #1a1919;
    padding: 40px 40px;
}
.cta-section1 {
  max-width: 1400px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
}

.cta-container1 {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(159, 241, 78, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.cta-background1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: ctaWave 20s ease-in-out infinite;
}

@keyframes ctaWave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-content1 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-title1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  max-width: 900px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 800px;
}

.cta-link1 {
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.cta-button1 {
  background: transparent;
  color: #ffffff;
  border: 2px solid #9ff14e;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-button1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9ff14e 0%, #baff6b 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-button1:hover {
  color: #0c1519;
  border-color: #baff6b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(159, 241, 78, 0.4);
}

.cta-button1:hover::before {
  left: 0;
}

.cta-button1:active {
  transform: translateY(-1px);
}

.cta-link1:focus {
  outline: 2px solid #9ff14e;
  outline-offset: 4px;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .cta-section1 {
    margin: 3rem auto 1.5rem;
  }

  .cta-container1 {
    border-radius: 24px;
  }

  .cta-content1 {
    padding: 3rem 1.5rem;
    gap: 1.25rem;
  }

  .cta-button1 {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .cta-section1 {
    margin: 2rem auto 1rem;
    padding: 0 0.75rem;
  }

  .cta-container1 {
    border-radius: 20px;
  }

  .cta-content1 {
    padding: 2.5rem 1.25rem;
    gap: 1rem;
  }

  .cta-link1 {
    width: 100%;
  }

  .cta-button1 {
    max-width: 100%;
  }
}

@media (min-width: 1400px) {
  .cta-content1 {
    padding: 5rem 3rem;
  }
}

/* ================== CTA section /END ======================= */










/*=============== FOOTER ===============*/
footer {
    position: relative;
    background: #000;
    color: #fff;
    padding: 90px 8%;
    overflow: hidden;
    z-index: 1;
}

footer {
    position: relative;
    overflow: hidden;
}

/* First Logo */
footer::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 35%;
    /* shifted a bit left */
    transform: translateX(190%);
    /* hidden initially */
    width: 400px;
    height: 400px;
    background: url("../img/rahul.webp") no-repeat center center;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0) invert(1);
    transition: transform 1.8s ease-out, opacity 1.8s ease-out;
}

/* Second Logo */
footer::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 65%;
    /* shifted a bit right */
    transform: translateX(220%);
    /* hidden initially */
    width: 300px;
    height: 400px;
    background: url("../img/Icon-01.webp") no-repeat center center;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0) invert(1);
    transition: transform 1.8s ease-out 0.6s, opacity 1.8s ease-out 0.6s;
    /* delay for "after" effect */
}

/* Active State */
footer.show-logo::before {
    transform: translateX(-90%);
    opacity: 0.07;
}

footer.show-logo::after {
    transform: translateX(-50%);
    opacity: 0.07;
}


footer * {
    position: relative;
    z-index: 2;
    /* keeps text & links above logo */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #aaa;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.footer-column ul li a:hover {
    color: #9FF14E;
    /* accent color */
}

.footer-column ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #9FF14E;
    /* green */
    transform: scaleX(0);
    transform-origin: left;
    /* start from left */
    transition: transform 0.6s ease;
}

.footer-column ul li a:hover {
    color: #9FF14E;
}

.footer-column ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: right;
    /* collapse to right when leaving */
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #9FF14E;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.glow-text {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    animation: greenGlow 1s infinite alternate;
}

@keyframes greenGlow {
    0% {
        text-shadow: 0 0 0px #9FF14E;
        color: #fff;
    }

    100% {
        text-shadow: 0 0 10px #9FF14E, 0 0 30px #9FF14E;
        color: #9FF14E;
    }
}

@media (max-width: 900px) {

    /* Hide first logo on mobile */
    footer::before {
        display: none;
    }

    /* Center second logo on mobile */
    footer::after {
        left: 50%;
        transform: translateX(-50%);
        /* center horizontally */
        width: 250px;
        /* scale down a bit if needed */
        height: 250px;
        transition: transform 1.8s ease-out, opacity 1.8s ease-out;
        margin-bottom: 300px;
    }

    /* Keep text above */
    footer * {
        position: relative;
        z-index: 2;
    }
}