/* -------------------Fonts---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f0f0f0;
}

/* ===================== HEADER STYLES ===================== */

#navbar {
  width: 100%;
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  min-height: 70px;
}

/* Logo */
.nav-left img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Center Wrapper */
.nav-center-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  margin-left: 9rem;
  margin-right: 1rem;
}

/* Center Nav Menu */
.nav-center ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-center ul li {
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-center ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  padding: 8px 4px;
}

.nav-center ul li a:hover {
  color: #357beb;
}

/* Dropdown Styling */
.dropdown-icon {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  min-width: 140px;
  z-index: 999;
  border: 1px solid #e5e5e5;
}

.dropdown .dropdown-menu li {
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.dropdown .dropdown-menu li:hover {
  background-color: #f8f9fa;
}

@media (hover: hover) and (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown.hover .dropdown-menu {
  display: block;
}

/* --- SEARCH STYLES --- */
.search-wrapper {
  position: relative;

  width: 40px;
  height: 40px;
  transition: width 0.4s ease-in-out;
}

#search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #333;
  cursor: pointer;
  padding: 0px;
  transition: left 0.4s ease-in-out, color 0.3s;
}

#search-bar {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 10px 20px 10px 45px;
  font-size: 14px;
  outline: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  box-sizing: border-box;
}

/* Active state for the search component */
.search-wrapper.active {
  width: 175px;
}

.search-wrapper.active #search-icon {
  left: 18px;
  transform: translateY(-50%);
  color: #888;
}

.search-wrapper.active #search-bar {
  opacity: 1;
  pointer-events: auto;
}

#search-bar:focus {
  border-color: #357beb;
  box-shadow: 0 0 0 2px rgba(53, 123, 235, 0.1);
}

/* Request a Demo button next to search */
.search-demo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Right corner items */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-btn {
  background-color: #EDB463;
  font-family: "Inter", sans-serif;
  color: #111;
  height: 38px;
  padding: 0 30px;
  border-radius: 26px;
  font-weight: 400;
  border: 1px solid #292C30;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.demo-btn:hover {
  background-color: rgba(25, 25, 25, 0.85);
  color: #EDB463;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.lang {
  background-color: #f0f0f0;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lang:hover {
  background-color: #e0e0e0;
}

/* Hide mobile demo button on desktop */
@media screen and (min-width: 1025px) {
  .search-demo-wrapper .demo-btn {
    display: none;
  }
}

/* ===================== RESPONSIVE HEADER ===================== */

.mobile-menu-icon {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
  z-index: 1001;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.mobile-menu-icon:hover {
  background-color: #f0f0f0;
}

/* When hamburger is active (turn into cross) */
.mobile-menu-icon.active i::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Tablet styles */
@media screen and (max-width: 1024px) {
  #navbar {
    padding: 1rem 1.5rem;
  }

  .nav-center-wrapper {
    margin-left: 2rem;
    gap: 10px;
  }

  .nav-center ul {
    gap: 16px;
  }

  .nav-center ul li a {
    font-size: 14px;
  }

  #search-bar.active {
    width: 120px;
  }

  .demo-btn {
    padding: 0 25px;
    height: 48px;
    font-size: 13px;
  }

  .lang {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/* Mobile styles */
@media screen and (max-width: 768px) {

  html,
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

  #navbar {
    padding: 1rem;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    min-height: 60px;
  }

  .nav-left img {
    height: 2rem;
  }

  .mobile-menu-icon {
    display: block;
  }

  .nav-right {
    display: none;
  }

  .nav-center-wrapper {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: white;
    z-index: 998;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav-center-wrapper.active {
    display: flex;
  }

  .nav-center {
    width: 100%;
    margin-bottom: 20px;
  }

  .nav-center ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
    margin: 0;
  }

  .nav-center ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 0;
  }

  .nav-center ul li:last-child {
    border-bottom: none;
  }

  .nav-center ul li a {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 16px;
  }

  /* Mobile dropdown styling */
  .dropdown .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background-color: #f8f9fa;
    margin-top: 8px;
    border-radius: 4px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown .dropdown-menu li {
    padding: 8px 16px;
    border-bottom: none;
  }

  .search-demo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
  }

  .search-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
  }

  .search-wrapper.active {
    width: calc(100% - 130px);
  }

  .demo-btn {
    padding: 0 16px;
    font-size: 14px;
    margin: 0;
    flex-shrink: 0;
    min-width: 120px;
    height: 48px;
  }
}

/* Extra small mobile devices */
@media screen and (max-width: 480px) {
  #navbar {
    padding: 0.75rem;
  }

  .nav-left img {
    height: 1.75rem;
  }

  .search-demo-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .search-wrapper {
    justify-content: flex-start;
  }

  .search-wrapper.active {
    width: 100%;
  }

  .demo-btn {
    width: 100%;
    text-align: center;
    min-width: auto;
    height: 52px;
  }
}


/* Footer */
.global-footer {
  width: 100%;
  background: #111;
  color: white;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px 30px;
  box-sizing: border-box;
}

.footer-box h4 {
  margin-bottom: 10px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.footer-box a {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  margin: 5px 0;
  transition: color 0.2s ease-in-out;
}

.footer-box a:hover {
  color: #FFFFFF;
}

.footer-box input {
  padding: 8px;
  width: 70%;
  border-radius: 6px;
  border: none;
}

.footer-box button {
  background: #ffa400;
  color: white;
  border: none;
  padding: 8px 12px;
  margin-top: 8px;
  border-radius: 6px;
  cursor: pointer;
}

.footer-bottom {
  width: 100%;
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  box-sizing: border-box;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}


footer {
  background-color: #111;
  color: white;
  padding: 60px 30px 20px 30px;
  width: 100%;
}

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

.footer-section {
  flex: 1 1 200px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.newsletter-description {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* ===================== NEWSLETTER FORM & POP-UP STYLES ===================== */
.newsletter-form-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.newsletter-form-container input {
  width: 100%;
  flex-grow: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
}

.newsletter-form-container button {
  width: 45px;
  height: 37px;
  padding: 8px 12px;
  margin: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  flex-shrink: 0;
}

/* --- Success Pop-up --- */
#success-popup {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background-color: #273444;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.4s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

#success-popup.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#success-popup p {
  margin: 0;
  font-size: 15px;
}

.close-popup-btn {
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  color: #aaa;
  transition: color 0.2s;
}

.close-popup-btn:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  color: #aaa;
  padding-top: 30px;
  font-size: 13px;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  color: #ccc;
  font-size: 25px;
  text-decoration: none;
  border: none;
  outline: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #ffffff;
  color: #0077b5;
}

/* ===================== HERO SECTION ===================== */
.hero-wrapper {
  background-image: url('/assets/images/home/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
  z-index: 2;
}

.hero-left {
  flex: 1;
  min-width: 280px;
}

.hero-left h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #494949;
  margin-bottom: 20px;
  line-height: 100%;
  font-family: 'Ubuntu', sans-serif;
}

/* --- Text Animation Container --- */
.hero-left h1 {
  perspective: 800px;
}

#animated-word {
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.4s;
  transform-origin: bottom;
}

/* --- The Glitch Pseudo-Elements --- */
#animated-word::before,
#animated-word::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #494949;
  background: #f0f0f0;
  overflow: hidden;
  opacity: 0;
}

#animated-word::before {
  left: 2px;
  text-shadow: -1px 0 red;
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

#animated-word::after {
  left: -2px;
  text-shadow: -1px 0 blue;
  animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

/* This class triggers the animation */
#animated-word.is-animating {
  transform: rotateX(90deg) translateY(-20px);
  opacity: 0;
}

/* This class makes the glitch visible during the animation */
#animated-word.is-animating::before,
#animated-word.is-animating::after {
  opacity: 1;
}

/* --- Glitch Keyframe Animations --- */
@keyframes glitch-anim-1 {
  0% {
    clip-path: inset(45% 0 50% 0);
  }

  2.5% {
    clip-path: inset(55% 0 20% 0);
  }

  5% {
    clip-path: inset(20% 0 60% 0);
  }

  7.5% {
    clip-path: inset(70% 0 10% 0);
  }

  10% {
    clip-path: inset(40% 0 45% 0);
  }

  12.5% {
    clip-path: inset(50% 0 30% 0);
  }

  15% {
    clip-path: inset(30% 0 55% 0);
  }

  17.5% {
    clip-path: inset(65% 0 25% 0);
  }

  20% {
    clip-path: inset(42% 0 52% 0);
  }

  100% {
    clip-path: inset(42% 0 52% 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: inset(10% 0 80% 0);
  }

  2.5% {
    clip-path: inset(85% 0 5% 0);
  }

  5% {
    clip-path: inset(25% 0 70% 0);
  }

  7.5% {
    clip-path: inset(75% 0 15% 0);
  }

  10% {
    clip-path: inset(50% 0 40% 0);
  }

  12.5% {
    clip-path: inset(90% 0 2% 0);
  }

  15% {
    clip-path: inset(40% 0 50% 0);
  }

  17.5% {
    clip-path: inset(80% 0 10% 0);
  }

  20% {
    clip-path: inset(12% 0 82% 0);
  }

  100% {
    clip-path: inset(12% 0 82% 0);
  }
}

.hero-left p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #484848;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  background-color: #555;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease-out;
}

.hero-btn:hover {
  background-color: #333;
}

.hero-right {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.hero-right img {
  height: auto;
  width: 450px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }

  .hero-right img {
    width: 300px;
    margin-top: 30px;
  }
}


@media (min-width: 992px) {
  body {
    overflow-x: hidden;
  }

  .hero-wrapper {
    position: relative;
    overflow-x: hidden;
  }

  .hero-right {
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .hero-left {
    max-width: 50%;
    position: relative;
    z-index: 2;
  }
}

@media screen and (max-width: 384px) {
  .hero-left {
    padding: 10px;
  }

  .hero-left p {
    padding-top: 2rem;
  }

  .hero-wrapper {
    padding-inline: 0px;
  }

  .hero-right {
    padding: 0px;
  }

  .hero-right img {
    height: 370px;
    width: auto;

  }
}

/* ================= MINI HERO ================= */
.mini-hero {
  /* background-image: url('/assets/images/home/mini-hero-background.png'); */
  background-color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 60px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;

}

.mini-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mini-hero-content {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.mini-text {
  flex: 1;
}

.mini-text h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.175;
  margin-bottom: 16px;
  background-image: linear-gradient(to right, #2D4531, #6FA87B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mini-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  padding-block: 1rem;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 20px;
  background-image: linear-gradient(to right, #414141, #4D4D4D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mini-btn {
  background-color: #555;
  color: white;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 200;
  display: inline-block;
}

.mini-btn:hover {
  background-color: #333;
}

.mini-video {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Responsive */
@media screen and (max-width: 768px) {
  .mini-hero {
    padding: 2rem;
    text-align: center;
    flex-direction: column;


  }

  .mini-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    margin-top: 2rem;

  }

  .mini-text h2 {
    font-size: 3rem;
    background-color: blue;

  }



  .mini-text p {
    font-size: 1rem;
    padding-inline: 5rem;
  }

  .mini-video {
    height: 25rem;
    width: 100%;
    padding: 0;
    box-shadow: none;
    padding-block: 2rem;

  }

  @media screen and (max-width: 426px) {
    .mini-hero {
      padding: 0;
    }

    .mini-text h2 {
      font-size: 2rem;
      padding: 0;
      margin: 0;
    }
  }
}


/* =================== ABOUT OUR SOLUTIONS =================== */
.solutions-exact {
  background-color: #ffffff;
  padding: 80px 40px;
}

.solutions-exact h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  margin-bottom: 60px;
  background-image: linear-gradient(to right, #28372a, #415644);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* CARD BASE */
.solution-box {
  padding: 50px;
  margin-bottom: 2rem;
}

.solution-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.solution-box.fusion h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
  color: #45624A;
  margin-bottom: 30px;

}

.solution-box.lite h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
  color: #494582;
  margin-bottom: 30px;
}

.solution-box h3 span {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  color: #45624A;
  font-weight: 400;
}


.solution-left,
.solution-capabilities,
.solution-right {
  flex: 1;
}

.fusion .solution-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #45624A;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  margin-bottom: 25px;
}

.lite .solution-left p {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #494562;
  margin-bottom: 25px;
  font-weight: 300;

}

.fusion .solution-capabilities h4 {
  font-size: 17px;
  font-weight: 600;
  color: #45624A;
  margin-bottom: 2rem;
}

.fusion .solution-capabilities ul {
  padding-left: 20px;
  color: #45624A;

}

.lite .solution-capabilities h4 {
  font-size: 17px;
  font-weight: 600;
  color: #494562;
  margin-bottom: 2rem;
}

.lite .solution-capabilities ul {
  padding-left: 20px;
  color: #494562;
  width: 25rem;
}

.solution-capabilities ul li {
  font-size: 15px;
  margin-bottom: 1rem;
}

.fusion .solution-right img {
  height: 18rem;

}

.lite .solution-right img {
  height: 20rem;

}

/*  BUTTON   */
.explore-btn {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 10px;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.explore-btn.green {
  background-color: #45624A;
  border: 2px transparent solid;

}

.explore-btn.purple {
  background-color: #494562;
  border: 2px transparent solid;

}

.explore-btn.green:hover {
  background-color: transparent;
  border-color: #45624A;

  color: #45624A;
}

.explore-btn.purple:hover {
  background-color: transparent;
  border-color: #494562;
  border: 2px solid;
  color: #494562;
}

/*  Background Colors */
.solution-box.fusion {
  background-color: rgba(216, 216, 208, 0.28);
}

.solution-box.lite {
  background-color: rgba(208, 212, 219, 0.42);
}

.mobile-btn {
  display: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .solutions-exact {
    padding: 0px;
  }

  .solutions-exact h2 {
    padding-top: 4rem;
  }

  .solution-content-wrapper {
    flex-direction: column;
  }

  .solution-box h3 {
    text-align: center;
  }

  .desktop-btn {
    display: none;
  }

  .mobile-btn {
    display: inline-block;
    margin-top: 20px;
  }

  .solution-box.fusion h3,
  .solution-box.lite h3 {
    font-size: 28px;
  }

  .solution-box h3 span {
    font-size: 20px;
  }

  .solution-right {
    align-self: center;
  }

  .solution-right img {
    opacity: 1;
  }

  .blogs-section h2 {
    padding-top: 3rem;

  }
}

@media screen and (max-width: 426px) {
  .solutions-exact {
    padding: 0px;

  }

  .solutions-exact h2 {
    padding-top: 4rem;
  }

  .blogs-section h2 {
    margin-top: 2rem;
  }


}

@media screen and (max-width: 384px) {
  .solution-box.lite {
    padding: 0;
  }

  .solution-box.lite h3 {
    padding: 2rem;
  }

  .lite .solution-left {
    padding: 2rem;
  }

  .lite .solution-capabilities {
    padding: 10px;
  }

  .lite .solution-capabilities ul {
    padding: 30px;
    left: 0;

  }

  .lite .solution-content-wrapper {
    padding: 0;
  }

  .lite .solution-content-wrapper a {
    margin-left: 2rem;
  }
}


/* =================== Contact Form Section  =================== */
.contact-form {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.contact-form h2 {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 100%;
  color: #383867;
  text-align: center;
  margin-bottom: 30px;
}

.contact-form form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form .form-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 14px;
  background-color: #fff;
  box-sizing: border-box;
}

.contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 8px 10px;
  padding-right: 30px;
}

.contact-form button {
  padding: 12px;
  background-color: #357beb;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-form button:hover {
  background-color: #245bb5;
}

.contact-form .required-field {
  position: relative;
  width: 100%;
}

.contact-form .form-group .required-field {
  flex: 1;
}

.contact-form .required-field::after {
  content: '*';
  color: red;
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 16px;
  pointer-events: none;
}

.contact-form .required-field:has(select)::after {
  right: 32px;
}

.contact-form .phone-country-code {
  flex: 0.6;
  min-width: 150px;
}

.contact-form .phone-number-input {
  flex: 1;
}

.searchable-select {
  position: relative;
  width: 100%;
}

.searchable-select .search-input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 8px 10px;
  padding-right: 30px;
}

.searchable-select .options-container {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 6px 6px;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  z-index: 10;
}

.searchable-select .options-container.active {
  display: block;
}

.searchable-select .option {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
}

.searchable-select .option:hover {
  background-color: #f0f0f0;
}



/* =================== BLOGS SECTION =================== */
.blogs-section {
  background-color: #ffffff;
  overflow: hidden;
  padding-bottom: 50px;
}

.blogs-section h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 100%;
  color: #2b2b3b;
  margin-left: 50px;
  margin-bottom: 70px;
}

.blogs-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.blogs-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.blogs-wrapper::-webkit-scrollbar {
  display: none;
}

.blog-card {
  border: #cfcfcf 1px solid;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 400px;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  background-color: #eee;
}

.card-info {
  padding: 30px 25px;
  text-align: left;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.card-info .blog-meta {
  font-size: 12px;
  color: #6c757d;
  text-transform: uppercase;
  font-weight: 500;
}


.card-info h4 {
  font-size: 25px;
  color: #364049;
  font-weight: bold;
  padding-block: 2rem;
  width: 20rem;
  line-height: 1.;
}

.card-info p:not(.blog-meta) {
  font-size: 14px;
  color: #364049;
  margin-bottom: 3rem;
  width: 20rem;
  line-height: 1.6;
  flex-grow: 1;
}

.card-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin-top: 24px;
  font-family: "Inter", sans-serif;
  width: 18rem;
  margin-bottom: 2rem;
  padding: 12px;
  border-radius: 25px;
  background-color: #364049;
  color: white;
  border: none;
  font-weight: 200;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.card-btn:hover {
  background-color: #444;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #121212;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 18px;
  color: #ddd;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-btn:hover {
  background-color: #373737;
  transform: translateY(-50%) scale(1.05);
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

.scroll-btn.hidden {
  display: none;
}


/* =================== TESTIMONIALS SECTION =================== */
.testimonials-section {

  padding: 80px 40px;
  background-image: url('/assets/images/home/testimonial-background.png');
  background-size: cover;
  background-position: center;
}

.testimonials-section h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  margin-bottom: 60px;
  background-image: linear-gradient(to right, #483838, #666666);

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 30px;

  position: relative;
  overflow: hidden;

}


/* Decorative quote mark in the background */
.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -20%;
  display: block;
  background-color: transparent;
  height: 16rem;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: 0.3s ease-in-out;


}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  display: block;
  background-color: tansparent;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;

  transition: 0.3s ease-in-out;


}

.testimonial-card:hover::before {
  background-color: #96B3CC;
}

.testimonial-card:hover::after {
  background-color: #96B3CC;
}

/* Header for author photo and name */
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-person-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-author span {
  font-size: 14px;
  color: #6c757d;
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

/* Testimonial text */
.testimonial-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Stars styling */
.stars {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.stars .fas.fa-star {
  color: #f3a395;
}

.stars .far.fa-star {
  color: #c5c5c5;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-section h2 {
    font-size: 42px;
  }

  .testimonials-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ===================== VIDEO MODAL STYLES ===================== */
#video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

#video-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  position: relative;
  background-color: #000;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

#popup-video {
  width: 100%;
  display: block;
}

#close-modal-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 28px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;


  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

#close-modal-btn:hover {
  background-color: #fff;
  transform: scale(1.1);
}

/* ===================== CHATBOT STYLES ===================== */
.chatbot-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 990;
  transition: transform 0.3s ease;
}

.chatbot-icon:hover {
  transform: scale(1.1);
}


/* ===================== CHATBOT WINDOW STYLES ===================== */
.chat-header {
  padding: 0.75rem 1rem;
  background-color: #f7f7f7;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
}

.header-left-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.close-chat {
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.close-chat:hover {
  color: #333;
}

#start-chat-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
  text-align: center;
  flex-grow: 1;
}

#start-chat-btn {
  background-image: linear-gradient(45deg, #357beb, #4184f0);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#start-chat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(45deg, #4184f0, #357beb);
}

.chat-input-area.hidden {
  display: none;
}

#chatbot-window {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 316px;
  height: 400px;
  background-color: #ffffff;
  border-radius: 23px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  z-index: 998;
  display: flex;
  flex-direction: column;

  transform-origin: bottom right;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease-out;
}

#chatbot-window.visible {
  transform: scale(1);
  opacity: 1;
}

#chat-suggestions-container {
  max-height: 125px;
  overflow-y: auto;
  background-color: #ffffff;
  border-top: 1px solid #e9e9e9;
  display: none;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f7f7f7;
}

.chat-suggestion-item {
  padding: 10px 1rem;
  cursor: pointer;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.chat-suggestion-item:last-child {
  border-bottom: none;
}

.chat-suggestion-item:hover {
  background-color: #f0f0f0;
}

.show-questions-btn {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  transition: background-color 0.2s ease;
  width: fit-content;
  align-self: flex-start;
  margin-top: 10px;
  color: #333;
}

.show-questions-btn:hover {
  background-color: #e0e0e0;
}

.chat-header {
  padding: 1rem;
  background-color: #f7f7f7;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
}

.close-chat {
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.close-chat:hover {
  color: #333;
}

/* --- Chat Body --- */
.chat-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  max-width: 90%;
}

.chat-message.received {
  align-self: flex-start;
}

.chat-message.received span {
  background-color: #e9e9e9;
  padding: 10px 14px;
  border-radius: 18px;
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
}

.chat-message.sent {
  align-self: flex-end;
}

.chat-message.sent span {
  background-color: #357beb;
  color: white;
  padding: 10px 14px;
  border-radius: 18px;
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
}

/* --- Chat Input Area --- */
.chat-input-area {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-top: 1px solid #e9e9e9;
  background-color: #f7f7f7;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
}

.chat-input-area input {
  flex: 1;
  border: 1px solid #ddd;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  margin-right: 10px;
  transition: border-color 0.2s ease;
}

.chat-input-area input:focus {
  border-color: #357beb;
}

.chat-input-area button {
  background: #357beb;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.chat-input-area button:hover {
  background: #245bb5;
}


/* --- Chat Options & Buttons --- */
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  align-self: flex-start;
  width: 100%;
}

.chat-option {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
  transition: background-color 0.2s ease;
  width: 100%;
  color: #333;
}

.chat-option:hover {
  background-color: #e0e0e0;
}

.back-to-questions {
  background-color: #e9e9e9;
  border-color: #ccc;
  margin-top: 15px;
  font-weight: 500;
}

/* --- Thinking Indicator --- */
.thinking-gif {
  width: 60px;
  height: auto;
  border-radius: 12px;
}

/* --- ChatBot Icon Side of Message --- */
.chat-message.received {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chat-message.received::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background-image: url('/assets/images/chatbot.jpeg');
  background-size: cover;
  background-position: center;
}

.chat-message.received.thinking-indicator::before {
  content: none;
}

/* Styles all links within bot messages */
.chat-message.received span a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
}

.chat-message.received span a:hover {
  text-decoration: underline;
}

/* --- Feedback Controls (Like/Dislike/Link) --- */
.feedback-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 40px;
  margin-top: 6px;
  margin-bottom: 10px;
}

.feedback-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: 16px;
  padding: 2px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.feedback-btn:hover {
  color: #555;
  transform: scale(1.1);
}

.feedback-btn.active.like {
  color: green;
}

.feedback-btn.active.dislike {
  color: #e74c3c;
}

.feedback-link {
  font-size: 12px;
  color: #666;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px dotted #666;
}

.feedback-link:hover {
  color: #000;
  border-bottom-color: #000;
}

/* --- Feedback Modal --- */
#feedback-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1002;
  display: none;
  justify-content: center;
  align-items: center;
}

#feedback-modal-overlay.visible {
  display: flex;
}

.feedback-modal {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
}

.feedback-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.feedback-modal-header h2 {
  margin: 0;
  font-size: 18px;
}

.close-feedback-modal {
  font-size: 28px;
  color: #888;
  cursor: pointer;
  line-height: 1;
}

.close-feedback-modal:hover {
  color: #333;
}

#feedback-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

#feedback-form textarea,
#feedback-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

#feedback-form textarea:focus,
#feedback-form input:focus {
  outline: none;
  border-color: #357beb;
}

#submit-feedback-btn {
  width: 100%;
  padding: 12px;
  background-color: #357beb;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#submit-feedback-btn:hover {
  background-color: #245bb5;
}


/* --- Feedback Success Pop-up --- */
#feedback-success-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background-color: #2ecc71;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1003;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

#feedback-success-popup.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

/* ===================== PROMOTIONAL POP-UP STYLES ===================== */
#promo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

#promo-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.promo-modal-content {
  position: relative;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  overflow: hidden;
}

.promo-modal-content img {
  display: block;
  width: 100%;
  height: auto;
}

#close-promo-btn {
  position: absolute;
  top: 20px;
  right: 10px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#close-promo-btn:hover {
  background-color: #fff;
  color: #333;
}

/* --- Responsive link for the 'Explore Now' button --- */
#explore-now-link {
  position: absolute;
  top: 60%;
  left: 78%;
  transform: translateX(-50%);
  width: 22%;
  height: 7%;
  border-radius: 50px;
  cursor: pointer;
}