/* ROOT VARIABLES */
:root {
  /*Brand Colors*/
  --primary-color: #00c89a;
  --primary-dark: #00a67f;
  --primary-light: #e6fbf5;

  /* Secondary Colors */
  --secondary-color: #0f172a;
  --secondary-light: #334155;
  --secondary-extra-light: #e2e8f0;

  /* Neutral Colors  */
  --white: #ffffff;
  --black: #000000;

  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /*  Text Colors  */
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-700);
  --text-light: var(--gray-600);

  /*Font Families*/
  --title-font: "ClashDisplay", sans-serif;
  --body-font: "Rubik", sans-serif;
  --accent-font: "Unna", serif;

  /* Font Sizes*/
  --font-size-60: 60px;
  --font-size-44: 44px;
  --font-size-32: 32px;
  --font-size-24: 24px;
  --font-size-20: 20px;
  --font-size-18: 18px;
  --font-size-16: 16px;
  --font-size-14: 14px;

  /* Headings  */
  --heading-xl: var(--font-size-60);
  --heading-lg: var(--font-size-44);
  --heading-md: var(--font-size-32);
  --heading-sm: var(--font-size-24);

  /*Paragraph */
  --text-xl: var(--font-size-20);
  --text-lg: var(--font-size-18);
  --text-md: var(--font-size-16);
  --text-sm: var(--font-size-14);

  /* Spacing Standards  */
  --gap-20: 20px;
  --section-padding: 60px;


  /* ========== Podcast Card Animation ========== */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.38s;
  /* ========== Podcast Detail Animation ========== */
  --night: #07101f;
  --night2: #0a1528;
  --smoke: #f2f5f9;
  --border: #e2eaf4;
  --muted: #8898aa;
  --txt: #1a2537;
}

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

body {
  font-family: var(--body-font);
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  background: var(--smoke);
}

/* HEADINGS */
.heading-xl {
  font-family: var(--title-font);
  font-size: var(--heading-xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

.heading-lg {
  font-family: var(--title-font);
  font-size: var(--heading-lg);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.heading-md {
  font-family: var(--title-font);
  font-size: var(--heading-md);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.heading-sm {
  font-family: var(--title-font);
  font-size: var(--heading-sm);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

/* TEXT STYLES */
.text-xl {
  font-family: var(--body-font);
  font-size: var(--text-xl);
  color: var(--text-secondary);
}

.text-lg {
  font-family: var(--body-font);
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.text-md {
  font-family: var(--body-font);
  font-size: var(--text-md);
  color: var(--text-secondary);
}

.text-sm {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  color: var(--text-light);
}

/* ACCENT FONT */
.accent-font {
  font-family: var(--accent-font);
}

/* SECTION UTILITIES */
.section-padding {
  padding: var(--section-padding) 0;
}

.gap-20 {
  gap: var(--gap-20);
}

/* SECTION TITLE COMPONENT */
.section-title {
  text-align: center;
  margin-bottom: var(--gap-20);
}

.section-title h2 {
  font-family: var(--title-font);
  font-size: var(--heading-lg);
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;

  /* Gradient Text */
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
}

.section-title h2::before {
  right: calc(100% + 20px);
}

.section-title h2::after {
  left: calc(100% + 20px);
}

/* Subtitle Tag Style */
.section-subtitle {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

/* ANIMATED UNDERLINE UTILITY CLASS */
.animated-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.animated-underline {
  position: relative;
  display: inline;
  background-image: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s ease;
  padding-bottom: 2px;
}

.animated-link:hover .animated-underline {
  background-size: 100% 2px;
}

.animated-underline.primary-only {
  background-image: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-color)
  );
}

.animated-underline.secondary-only {
  background-image: linear-gradient(
    to right,
    var(--secondary-color),
    var(--secondary-color)
  );
}

.animated-underline.thick {
  background-size: 0 3px;
}

.animated-link:hover .animated-underline.thick {
  background-size: 100% 3px;
}

.animated-underline.reverse {
  background-image: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  background: var(--primary-color);
  color: var(--white);
  transition: all 0.3s ease;
  font-size: var(--text-md);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 200, 154, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 154, 0.4);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-lg {
  padding: 14px 32px;
  font-size: var(--text-lg);
}

.btn-sm {
  padding: 8px 20px;
  font-size: var(--text-sm);
}

/* PROGRESS BAR */
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 2px 8px rgba(0, 200, 154, 0.3);
}

/* SCROLL TO TOP BUTTON */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 200, 154, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTopBtn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 200, 154, 0.5);
}

#scrollToTopBtn:active {
  transform: translateY(-2px) scale(1);
}

/* NAVBAR*/
.navbar-1 {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-1.nav-hidden {
  transform: translateY(-100%);
}

/* Top Bar */
.navbar-1 .top-bar {
  background: var(--secondary-color);
  padding: 8px 0;
  border-bottom: 2px solid var(--primary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-1.scrolled .top-bar {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}

.navbar-1 .top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-1 .social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.navbar-1 .social-links span {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.navbar-1 .social-links a {
  color: var(--white);
  font-size: 14px;
  transition: color 0.3s;
}

.navbar-1 .social-links a:hover {
  color: var(--primary-color);
}

.navbar-1 .top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-1 .language-selector {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

.navbar-1 .language-selector option {
  color: var(--secondary-color);
}

.navbar-1 .auth-links {
  display: flex;
  gap: 15px;
}

.navbar-1 .auth-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar-1 .auth-links a:hover {
  color: var(--primary-color);
}

/* Main Nav */
.navbar-1 .main-nav {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.4s;
}

.navbar-1.scrolled .main-nav {
  padding: 12px 0;
}

.navbar-1 .logo img {
  height: 45px;
  transition: height 0.4s;
}

.navbar-1.scrolled .logo img {
  height: 38px;
}

/* Nav Menu */
.navbar-1 .nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
  background: white;
  padding: 10px 30px;
  margin: 0;
  position: relative;
  z-index: 1005;
}

.navbar-1 .nav-menu a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
  position: relative;
}

.navbar-1 .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.navbar-1 .nav-menu > li > a:hover,
.navbar-1 .nav-menu > li > a.active {
  color: var(--primary-color);
}

.navbar-1 .nav-menu > li > a:hover::after,
.navbar-1 .nav-menu > li > a.active::after {
  width: 100%;
}

/* Dropdown - Desktop */
.navbar-1 .nav-menu li {
  position: relative;
}

.navbar-1 .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 53%;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
  background: white;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  list-style: none;
  margin: 0;
  border: 1px solid #e5e7eb;
  display: block;
}

.navbar-1 .has-dropdown::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.navbar-1 .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
  display: block;
  transition: opacity 0.3s;
  opacity: 0;
}

.navbar-1 .has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.navbar-1 .has-dropdown:hover > .dropdown-menu::before {
  opacity: 1;
}

.navbar-1 .dropdown-menu li {
  border-bottom: 1px solid #f3f4f6;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-1 .dropdown-menu li:nth-child(1) {
  transition-delay: 0.05s;
}

.navbar-1 .dropdown-menu li:nth-child(2) {
  transition-delay: 0.1s;
}

.navbar-1 .dropdown-menu li:nth-child(3) {
  transition-delay: 0.15s;
}

.navbar-1 .dropdown-menu li:nth-child(4) {
  transition-delay: 0.2s;
}

.navbar-1 .dropdown-menu li:nth-child(5) {
  transition-delay: 0.25s;
}

.navbar-1 .dropdown-menu li:nth-child(6) {
  transition-delay: 0.3s;
}

.navbar-1 .has-dropdown:hover > .dropdown-menu li {
  opacity: 1;
  transform: translateY(0);
}

.navbar-1 .dropdown-menu li:last-child {
  border-bottom: none;
}

.navbar-1 .dropdown-menu a {
  display: block;
  padding: 14px 24px;
  color: var(--gray-700);
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.navbar-1 .dropdown-menu a::after {
  display: none;
}

.navbar-1 .dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-1 .dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary-color);
  padding-left: 28px;
}

.navbar-1 .dropdown-menu a:hover::before {
  transform: scaleY(1);
}

.navbar-1 .has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar-1 .has-dropdown > a i {
  font-size: 10px;
  transition: transform 0.3s;
}

.navbar-1 .has-dropdown:hover > a i {
  transform: rotate(180deg);
}

/* Nav Actions */
.navbar-1 .nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions a {
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.navbar-1 a:hover {
  color: var(--primary-color);
}

.navbar-1 .search-icon {
  color: var(--gray-700);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.navbar-1 .search-icon:hover {
  color: var(--primary-color);
}

/* Mobile Toggle */
.navbar-1 .mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
}

.navbar-1 .mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gray-900);
  border-radius: 3px;
}

.navbar-1 .mobile-close {
  display: none;
}

.navbar-1 .menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s;
}

.navbar-1 .menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Ticker */
.navbar-1 .ticker {
  background: var(--primary-light);
  padding: 10px 0;
  overflow: hidden;
  transition: all 0.4s;
}

.navbar-1.scrolled .ticker {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

.navbar-1 .ticker-content {
  display: flex;
  gap: 40px;
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.navbar-1 .ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}

.navbar-1 .ticker-item.up {
  color: #059669;
}

.navbar-1 .ticker-item.down {
  color: #dc2626;
}

/* Demo Content */
.demo-content {
  margin-top: 170px;
}

.demo-section {
  background: white;
  padding: var(--section-padding) 40px;
  margin-bottom: var(--gap-20);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.demo-section h2 {
  font-family: var(--title-font);
  font-size: var(--heading-md);
  margin-bottom: var(--gap-20);
  color: var(--secondary-color);
}

.demo-section p {
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 15px;
}

.nav-actions a {
  display: none;
}

/*  FOOTER STYLES */
.site-footer {
  background-color: var(--secondary-color);
  color: var(--white);
  position: relative;
  padding-top: 60px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 20%,
    var(--primary-color) 80%,
    transparent 100%
  );
}

/* Brand Column */
.footer-brand {
  max-width: 280px;
}

.footer-logo-img {
  max-width: 100px;
  height: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-logo-text {
  font-family: var(--title-font);
  font-size: var(--heading-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.footer-about {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer Columns */
.footer-heading {
  font-family: var(--title-font);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--gap-20);
  letter-spacing: -0.3px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.footer-link {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-link:hover::after {
  width: 100%;
}

/* Contact Column */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--gap-20);
  padding: 0;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-info {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.contact-link-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-link-wrapper:hover {
  color: var(--white);
}

/* Newsletter Column */
.newsletter-description {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--gap-20);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--body-font);
  font-size: var(--text-sm);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-color);
}

.newsletter-button {
  width: 100%;
  padding: 12px 24px;
  font-family: var(--body-font);
  font-size: var(--text-sm);
  font-weight: 600;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}

.newsletter-button:active {
  transform: translateY(0);
}

.newsletter-privacy {
  font-family: var(--body-font);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-top: 8px;
}

.newsletter-privacy a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.newsletter-privacy a:hover {
  opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.footer-copyright {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal-link:hover {
  color: var(--primary-color);
}

/*  RESPONSIVE - NAVBAR */
@media (max-width: 1024px) and (min-width: 769px) {
  .navbar-1 .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--gap-20);
    padding: 10px var(--gap-20);
  }

  .navbar-1 .nav-menu > li > a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
.demo-content {
   margin-top: 217px;
}
}
@media (max-width: 768px) {
  #progressBar {
    height: 3px;
  }

  #scrollToTopBtn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: var(--gap-20);
    right: var(--gap-20);
  }

  .section-title h2 {
    font-size: var(--heading-md);
  }

  .section-title h2::before,
  .section-title h2::after {
    display: none;
  }

  .section-subtitle {
    font-size: 11px;
    gap: 12px;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: var(--gap-20);
  }

  .navbar-1 .mobile-toggle {
    display: flex;
  }

  .navbar-1 .top-bar {
    padding: 6px 0;
  }

  .navbar-1 .social-links {
    gap: 10px;
  }

  .navbar-1 .social-links a {
    font-size: 12px;
  }

  .navbar-1 .top-right {
    gap: 10px;
  }

  .navbar-1 .language-selector {
    font-size: 11px;
    padding: 3px 8px;
  }

  .navbar-1 .auth-links {
    display: none;
  }

  .navbar-1 .main-nav {
    padding: 15px 0;
  }

  .navbar-1.scrolled .main-nav {
    padding: 10px 0;
  }

  .navbar-1 .logo img {
    height: 35px;
  }

  .navbar-1.scrolled .logo img {
    height: 32px;
  }

  .navbar-1 .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    flex-direction: column;
    padding: 80px 0 var(--gap-20) 0;
    gap: 0;
    overflow-y: auto;
    transition: right 0.4s;
    box-shadow: -4px 0 var(--gap-20) rgba(0, 0, 0, 0.15);
    border-radius: 0;
    z-index: 999;
  }

  .navbar-1 .nav-menu.active {
    right: 0;
  }

  .navbar-1 .nav-menu > li {
    border-bottom: 1px solid #e5e7eb;
  }

  .navbar-1 .nav-menu > li:last-child {
    border-bottom: none;
  }

  .navbar-1 .nav-menu > li > a {
    display: flex;
    justify-content: space-between;
    padding: 16px 25px;
    font-size: 15px;
  }

  .navbar-1 .nav-menu > li > a::after {
    display: none;
  }

  .navbar-1 .nav-menu > li > a.active {
    background: var(--primary-light);
    color: var(--primary-color);
  }

  .navbar-1 .has-dropdown::after {
    display: none !important;
  }

  .navbar-1 .has-dropdown:hover > .dropdown-menu,
  .navbar-1 .has-dropdown:hover > .dropdown-menu li,
  .navbar-1 .has-dropdown:hover > .dropdown-menu a {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .navbar-1 .has-dropdown:hover > .dropdown-menu {
    max-height: 0 !important;
    pointer-events: none !important;
  }

  .navbar-1 .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-width: 100% !important;
    border-radius: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #f9fafb !important;
    border: none !important;
    transform: none !important;
    opacity: 1 !important;
    top: auto !important;
    left: auto !important;
    visibility: visible !important;
  }

  .navbar-1 .dropdown-menu::before {
    display: none !important;
  }

  .navbar-1 .has-dropdown.mobile-open > .dropdown-menu {
    max-height: 600px !important;
    pointer-events: auto !important;
  }

  .navbar-1 .has-dropdown.mobile-open:hover > .dropdown-menu {
    max-height: 600px !important;
    pointer-events: auto !important;
  }

  .navbar-1 .dropdown-menu li,
  .navbar-1 .has-dropdown:hover > .dropdown-menu li,
  .navbar-1 .has-dropdown.mobile-open > .dropdown-menu li {
    opacity: 1 !important;
    transform: none !important;
    transition: background 0.3s ease !important;
    border-bottom: 1px solid #e5e7eb !important;
    visibility: visible !important;
  }

  .navbar-1 .dropdown-menu li:last-child {
    border-bottom: none !important;
  }

  .navbar-1 .dropdown-menu li:nth-child(1),
  .navbar-1 .dropdown-menu li:nth-child(2),
  .navbar-1 .dropdown-menu li:nth-child(3),
  .navbar-1 .dropdown-menu li:nth-child(4),
  .navbar-1 .dropdown-menu li:nth-child(5),
  .navbar-1 .dropdown-menu li:nth-child(6) {
    transition-delay: 0s !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .navbar-1 .dropdown-menu a,
  .navbar-1 .has-dropdown:hover > .dropdown-menu a,
  .navbar-1 .has-dropdown.mobile-open > .dropdown-menu a {
    padding: 14px 25px 14px 45px !important;
    font-size: 14px !important;
    transition:
      background 0.3s ease,
      color 0.3s ease !important;
    color: var(--gray-700) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .navbar-1 .dropdown-menu a::before {
    display: none !important;
  }

  .navbar-1 .dropdown-menu a:hover,
  .navbar-1 .dropdown-menu a:active {
    background: var(--primary-light) !important;
    color: var(--primary-color) !important;
  }

  .navbar-1 .has-dropdown > a i {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-1 .has-dropdown.mobile-open > a i {
    transform: rotate(180deg);
  }

  .navbar-1 .mobile-close {
    display: flex;
    position: absolute;
    top: var(--gap-20);
    right: var(--gap-20);
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--gray-900);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
  }

  .navbar-1 .search-icon {
    font-size: 18px;
  }

  .navbar-1 .ticker {
    padding: 8px 0;
  }

  .navbar-1 .ticker-item {
    font-size: 11px;
  }

  .demo-content {
    margin-top: 136px;
  }

  .demo-section {
    padding: 40px var(--gap-20);
  }

  .demo-section h2 {
    font-size: var(--heading-sm);
  }

  .nav-actions a {
    display: block;
  }
}

@media (max-width: 480px) {
  #scrollToTopBtn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }

  .section-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    gap: 12px;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 15px;
  }

  .navbar-1 .social-links a {
    font-size: 11px;
  }

  .navbar-1 .language-selector {
    display: block;
  }

  .navbar-1 .logo img {
    height: 30px;
  }

  .navbar-1.scrolled .logo img {
    height: 28px;
  }

  .navbar-1 .nav-menu {
    width: 280px;
  }

  .demo-content {
    margin-top: 137px;
  }

  .demo-section h2 {
    font-size: var(--text-xl);
  }

  .navbar-1 .social-links span {
    display: none;
  }

  .navbar-1 .social-links a {
    display: none;
  }
}
a{
  text-decoration: none;
}
/* RESPONSIVE - FOOTER */
@media (max-width: 768px) {
  .footer-heading{
    margin-top: 20px;
  }
  .site-footer {
    padding-top: 48px;
  }

  .footer-brand {
    max-width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding-top: 40px;
  }

  .footer-logo-img {
    max-width: 140px;
  }

  .footer-logo-text {
    font-size: var(--text-xl);
  }

  .footer-heading {
    font-size: var(--text-md);
  }

  .footer-bottom {
    padding: 24px 0;
  }
}
.mb-60{
margin-bottom: 60px;
}