/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

/* CSS Variables */
:root {
  --color-primary-light: #0f1a0f;
  --color-primary-dark: #a0a89e;
  --color-section-1: #1a251a;
  --color-section-2: #1e271e;
  --color-section-3: #162116;
  --color-section-4: #1c261c;
  --color-accent: #1a251a;
  --font-primary: "Inter", sans-serif;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --letter-spacing: -0.03em;
  --title-size: clamp(2rem, 5vw, 4rem);
  --header-padding: clamp(0.5rem, 2vw, 2rem);
  --section-padding: clamp(1rem, 5vw, 3rem);
  --hue: 223;
  --hue-positive: 133;
  --hue-warning: 33;
  --hue-negative: 3;
  --sat: 10%;
  --light-gray1: hsl(var(--hue), var(--sat), 95%);
  --light-gray2: hsl(var(--hue), var(--sat), 90%);
  --light-gray3: hsl(var(--hue), var(--sat), 85%);
  --light-gray4: hsl(var(--hue), var(--sat), 80%);
  --light-gray5: hsl(var(--hue), var(--sat), 75%);
  --light-gray6: hsl(var(--hue), var(--sat), 70%);
  --light-gray7: hsl(var(--hue), var(--sat), 65%);
  --dark-gray4: hsl(var(--hue), var(--sat), 30%);
  --dark-gray5: hsl(var(--hue), var(--sat), 25%);
  --dark-gray6: hsl(var(--hue), var(--sat), 20%);
  --dark-gray7: hsl(var(--hue), var(--sat), 15%);
  --dark-gray8: hsl(var(--hue), var(--sat), 10%);
  --dark-gray9: hsl(var(--hue), var(--sat), 5%);
  --positive1: hsl(var(--hue-positive), 90%, 50%);
  --positive2: hsl(var(--hue-positive), 90%, 20%);
  --warning1: hsl(var(--hue-warning), 90%, 55%);
  --warning2: hsl(var(--hue-warning), 90%, 40%);
  --negative1: hsl(var(--hue-negative), 90%, 65%);
  --negative2: hsl(var(--hue-negative), 90%, 35%);
  --trans-dur: 0.3s;
}

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

html {
  height: 100%;
}

body {
  font-family: var(--font-primary);
  letter-spacing: var(--letter-spacing);
  color: var(--color-primary-dark);
  overflow-x: hidden;
  min-height: 100%;
}

h1, h2, h3 {
  font-family: var(--font-primary);
  font-size: var(--title-size);
  color: #dfe6dd;
  font-weight: var(--font-weight-semibold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  font-size: 1.7rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #dfe6dd;
  max-width: 70%;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--header-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(26, 37, 26, 0.8);
  backdrop-filter: blur(5px);
}

.logo {
  font-weight: var(--font-weight-semibold);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: #fff;
}

nav {
  display: flex;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  margin-left: clamp(0.5rem, 2vw, 2rem);
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: var(--font-weight-regular);
  text-transform: uppercase;
  font-size: clamp(0.7rem, 1vw, 1rem);
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a.nav-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-primary-dark);
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

nav ul li a.nav-btn:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-accent);
}

nav ul li a.nav-btn::after {
  display: none;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 50%;
  left: 0;
  background-color: var(--color-primary-dark);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
}

.close-menu {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-color: var(--color-accent);
  background-image: url('home-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--section-padding);
  padding-top: 100px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
  justify-content: flex-start;
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
}

/* Media query for mobile devices (e.g., screens up to 768px) */
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll; /* Fixed backgrounds can be problematic on mobile */
    background-size: auto 100%; /* Full height, auto width to show middle of landscape image */
    background-position: center center; /* Center the middle of the image */
    background-repeat: no-repeat; /* Prevent tiling */
    min-height: 100vh; /* Maintain full viewport height */
  }
}
/* Stats Container */
.stats-container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
  margin-top: auto;
  padding-bottom: 2rem;
}

.stat-item {
  text-align: left;
  padding: 1rem;
  min-width: 150px;
  color: #fff;
}

.stat-value {
  font-size: 2rem;
  font-weight: 400;
}

.stat-label {
  font-size: clamp(0.8rem, 1vw, 1rem);
  text-transform: uppercase;
}

/* Buttons Container */
.buttons-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  padding: 0.75rem 0;
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--color-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 1rem);
  cursor: pointer;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn .arrow {
  margin-left: 0.5rem;
}

.btn:hover {
  color: var(--color-accent);
}

.btn-secondary {
  min-width: 250px;
}


/* About Section */
.about-section {
  background-color: #fff;
  color: #0f1a0f;
  padding: var(--section-padding);
}

.about-container {
  max-width: 1400px;
  height: 60vh;
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-image {
  flex: 1;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.about-h1 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
  color: #2c2c2c;
  margin: 2rem 0 2rem 0;
  letter-spacing: -0.02em;
}

.about-p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 100%;
  line-height: 1.6;
  color: #0f1a0f;
}

.btn-about {
  border: 1px solid #000;
  color: var(--color-accent);
  padding: 1rem 2rem;
  transition: transform 0.3s ease;
}

.btn-about:hover {
  color: #fff;
  background-color: #0f1a0f;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* Plans and Pricing */
.pro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pro-header {
  text-align: center;
  margin-bottom: 50px;
}

.pro-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 15px;
}

.pro-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 500px;
  margin: 0 auto;
}

.pro-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  gap: 20px;
}

.pro-toggle-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.pro-toggle-btn.active {
  background-color: #000;
  color: white;
}

.pro-toggle-btn:not(.active) {
  background-color: #e9ecef;
  color: #6c757d;
}

.pro-toggle-btn:hover:not(.active) {
  background-color: #dee2e6;
}

.pro-discount {
  background-color: #838584;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 400;
  margin-left: 10px;
}

.pro-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pro-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pro-card.popular {
  border-color: #000;
  transform: scale(1.05);
}

.pro-card.enterprise {
  background: linear-gradient(135deg, #020203 0%, #030506 100%);
  color: white;
}

.pro-badge {
  position: absolute;
  top: -10px;
  right: 30px;
  background-color: #ff6b35;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 400;
}

.pro-plan-name {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.pro-plan-price {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.pro-plan-billing {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pro-card.enterprise .pro-plan-billing {
  color: #bdc3c7;
}

.pro-plan-description {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #6c757d;
}

.pro-card.enterprise .pro-plan-description {
  color: #bdc3c7;
}

.pro-features {
  list-style: none;
  margin-bottom: 30px;
}

.pro-feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.pro-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #838584;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pro-card.enterprise .pro-feature-icon {
  background-color: #9c9d9d;
}

.pro-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pro-btn-primary {
  background-color: #000;
  color: white;
}

.pro-btn-primary:hover {
  background-color: #000;
  transform: translateY(-2px);
}

.pro-btn-secondary {
  background-color: #f8f9fa;
  color: #6c757d;
  border: 2px solid #e9ecef;
}

.pro-btn-secondary:hover {
  background-color: #e9ecef;
  color: #495057;
}

.pro-btn-enterprise {
  background-color: white;
  color: #2c3e50;
}

.pro-btn-enterprise:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

/* Payment Page Styles */
.payment-section {
  display: none;
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.payment-section.active {
  display: block;
}

.payment-title {
  font-size: 2rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.payment-details {
  margin-bottom: 30px;
}

.payment-details h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.payment-details p {
  margin-bottom: 10px;
  color: #6c757d;
}

.payment-details strong {
  color: #2c3e50;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment-form label {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 5px;
  display: block;
}

.payment-form input,
.payment-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
}

.payment-form input:focus,
.payment-form select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.payment-form button {
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  background-color: #000;
  color: white;
  transition: all 0.3s ease;
}

.payment-form button:hover {
  transform: translateY(-2px);
  background-color: #333;
}

.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background-color: #f8f9fa;
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #e9ecef;
  color: #495057;
}

/* Marquee Widget */
.icon {
  display: block;
  width: 1em;
  height: 1em;
}

.icon--large {
  font-size: 4.5em;
}

.icon--warning {
  color: var(--warning2);
}

.widget {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--light-gray4);
  border-radius: 1.5em;
  overflow: hidden;
  padding: 1em 0 0.5em 1em;
  position: relative;
  width: 11.5em;
  height: 8.9em;
  transition: background-color var(--trans-dur);
  flex-shrink: 0;
  border: none;
}

.widget__content {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.widget__symbol,
.widget__name,
.widget__change,
.widget__price {
  animation: fade-fly-in 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  opacity: 0;
}

.widget__symbol,
.widget__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Arial, Helvetica, sans-serif;
}

.widget__symbol {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #0f1a0f;
  padding-bottom: 0;
}

.widget__name,
.widget__change {
  transition: color var(--trans-dur);
}

.widget__name {
  color: var(--dark-gray4);
  animation-delay: 0.1s;
  font-size: 0.85em;
  font-weight: 400;
  line-height: 1.3333;
}

.widget__change {
  animation-delay: 0.2s;
  display: flex;
  font-weight: 300;
  gap: 0.375em;
  align-items: center;
  font-size: 0.875em;
  line-height: 1.7;
}

.widget__change--negative {
  color: var(--negative2);
}

.widget__change--positive {
  color: var(--positive2);
}

.widget__error {
  font-size: 0.75em;
  margin: auto;
  text-align: center;
}

.widget__error .icon {
  margin: 0 auto 0.75rem auto;
  transition: color var(--trans-dur);
}

.widget__graph {
  display: block;
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 100%;
  height: auto;
}

.widget__graph-clip {
  transition: transform 1s linear;
}

.widget__graph-line {
  fill: var(--light-gray3);
  stroke: var(--light-gray2);
  transition: fill var(--trans-dur), stroke var(--trans-dur);
}

[dir=rtl] .widget__graph {
  transform: scaleX(-1);
}

.marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee .widget-grid {
  display: inline-flex;
  gap: 1.5em;
  padding: 1.5em;
  white-space: nowrap;
  animation: marqueeAnimation 30s linear infinite;
}

@keyframes marqueeAnimation {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fade-fly-in {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#widgetsec {
  margin-top: 20vh;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-container, .section-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  
  .hero-text {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: left;
  }
  
  p {
    max-width: 90%;
    font-size: 1.4rem;
    line-height: normal;
  }
  
  .buttons-container {
    justify-content: flex-start;
  }
  
  .stats-container {
    justify-content: flex-start;
    margin-top: 2rem;
  }
  
  .stat-item {
    width: 40%;
    text-align: left;
  }

  .section-container {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-accent);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 1rem 0;
  }

  nav ul li a {
    font-size: 1.2rem;
  }

  nav ul li a.nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
  }

  nav ul.active .close-menu {
    display: block;
  }

  .hero-container {
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
    justify-content: flex-start;
    margin-top: 5rem;
    align-items: flex-start;
  }
  
  .buttons-container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 1rem;
    max-width: 300px;
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-bottom: 1rem;
  }
  
  .stat-item {
    width: auto;
    padding: 0.5rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .pro-plans {
    grid-template-columns: 1fr;
  }
  
  .pro-card.popular {
    transform: none;
  }
  
  .pro-title, .payment-title {
    font-size: 2rem;
  }
  
  .pro-toggle {
    flex-direction: column;
    gap: 10px;
  }

  .about-section {
    height: 80vh;
    padding: 0;
    margin: 4rem 0;
  }
  
  .about-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-h1 {
    font-size: 1.8rem;
  }
  .about-text {
    width: 100%;
    margin-bottom: 2rem;
  }

  .about-image {
    width: 100%;
    max-width: none;
    margin-bottom: 3rem;
  }

  #widgetsec {
    margin-top: 20vh;
  }
}

@media (max-width: 576px) {
  h1, h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1.2rem;
    max-width: 100%;
  }
}

@media (prefers-color-scheme: dark) {
  .icon--warning {
    color: var(--warning1);
  }
  .widget {
    background-color: rgb(217, 214, 214);
    color: #141414;
  }
  .widget__change--negative {
    color: var(--negative1);
  }
  .widget__change--positive {
    color: green;
  }
  .widget__graph-line {
    fill: rgb(176, 174, 174);
    stroke: #878686;
  }
  .widget__name {
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
  }
}

.widgetroot {
    width: 100%;
    height: 100%;
    margin-bottom: 3rem;
}

@media only screen and (max-width: 768px) {
    .widgetroot {
        margin-top: 7rem;
        margin-bottom: 3rem;
    }
}

.nsk-experiences-section {
  padding: 80px 20px;
  background-color: #f8f7f5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.nsk-container {
  max-width: 1200px;
  margin: 0 auto;
}

.nsk-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.nsk-text-content {
  padding-right: 40px;
}

.nsk-main-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: #2c2c2c;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}
.stockh2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
  color: #2c2c2c;
  margin: 2rem 5rem;
  letter-spacing: -0.02em;
}
.stockh3 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
  color: #2c2c2c;
  margin: 2rem 5rem;
  letter-spacing: -0.02em;
}
.nsk-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 48px 0;
  font-weight: 400;
}

.nsk-experiences-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nsk-experience-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nsk-experience-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 -20px;
  padding: 28px 20px;
  border-radius: 8px;
}

.nsk-experience-item:last-child {
  border-bottom: none;
}

.nsk-experience-content {
  flex: 1;
}

.nsk-experience-title {
  font-size: 20px;
  font-weight: 500;
  color: #2c2c2c;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.nsk-experience-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #777;
  margin: 0;
  font-weight: 400;
}

.nsk-experience-arrow {
  width: 40px;
  height: 40px;
  background-color: #383f38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nsk-experience-item:hover .nsk-experience-arrow {
  background-color: #383f38;
  transform: translateX(4px);
}

.nsk-image-content {
  position: relative;
}

.nsk-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nsk-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .nsk-experiences-section {
    padding: 60px 20px;
  }
  
  .nsk-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nsk-text-content {
    padding-right: 0;
  }
  
  .nsk-main-title {
    font-size: 36px;
  }
  
  .nsk-main-image {
    height: 400px;
  }
  
  .nsk-experience-item:hover {
    margin: 0;
    padding: 28px 0;
    background-color: transparent;
  }
}

 /* CSS remains unchanged */
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Inter', sans-serif;
 }

 .stck-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }

 .stck-nav {
     display: flex;
     gap: 32px;
     margin-bottom: 20px;
     border-bottom: 1px solid #e5e7eb;
 }

 .stck-nav-item {
     padding: 10px 0;
     font-size: 0.875rem;
     color: #666;
     cursor: pointer;
     border-bottom: 2px solid transparent;
     transition: all 0.2s ease;
 }

 .stck-nav-item.active {
     color: #333;
     border-bottom-color: #007bff;
     font-weight: 600;
 }

 .stck-nav-item:hover {
     color: #333;
 }

 .stck-filters {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     margin-bottom: 20px;
     align-items: center;
 }

 .stck-filter {
     padding: 8px 16px;
     border-radius: 9999px;
     border: 1px solid #e9ecef;
     background: white;
     font-size: 0.8125rem;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .stck-filter.active {
     background: #007bff;
     color: white;
     border-color: #007bff;
 }
  @media (max-width: 768px) {
    .stck-filter.active {
  display: none;
    }
  }

 .stck-search {
     position: relative;
     margin-left: auto;
 }

 .stck-search-icon {
     position: absolute;
     left: 12px;
     top: 50%;
     transform: translateY(-50%);
     color: #6b7280;
     font-size: 0.875rem;
 }

 .stck-search-input {
     padding: 8px 12px 8px 35px;
     border: 1px solid #e9ecef;
     border-radius: 0.5rem;
     font-size: 0.875rem;
     width: 250px;
     background: white;
 }

 .stck-table-container {
     background: white;
     border-radius: 0.75rem;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0,0,0,0.04);
     border: 1px solid #e9ecef;
 }

 .stck-table {
     width: 100%;
     border-collapse: collapse;
 }

 .stck-table-header {
     background: #f8f9fa;
     border-bottom: 1px solid #e9ecef;
 }

 .stck-table th {
     padding: 16px 12px;
     text-align: left;
     font-size: 0.75rem;
     font-weight: 600;
     color: #666;
     text-transform: uppercase;
     letter-spacing: 0.03em;
 }

 .stck-table td {
     padding: 16px 12px;
     border-bottom: 1px solid #f1f3f4;
     font-size: 0.875rem;
 }

 .stck-table tr:hover {
     background: #f8f9fa;
 }

 .stck-row-company {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .stck-row-star {
     cursor: pointer;
     color: #ffc107;
     font-size: 1rem;
 }

 .stck-row-star.inactive {
     color: #ddd;
 }

 .stck-row-logo {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #f1f3f4;
 }

 .stck-row-logo span {
     font-weight: 600;
     font-size: 14px;
 }

 .stck-row-info {
     display: flex;
     flex-direction: column;
 }

 .stck-row-symbol {
     font-weight: 600;
     color: #333;
 }

 .stck-row-name {
     font-size: 0.75rem;
     color: #666;
 }

 .stck-mini-chart {
     width: 80px;
     height: 40px;
     object-fit: contain;
 }

 .stck-change-cell {
     font-weight: 600;
 }

 .stck-change-cell.positive {
     color: #22c55e;
 }

 .stck-change-cell.negative {
     color: #ef4444;
 }

 .stck-price-cell {
     font-weight: 600;
     color: #333;
 }

 .stck-volume-cell,
 .stck-market-cap-cell {
     color: #666;
 }

 .stck-actions {
     cursor: pointer;
     color: #666;
     font-size: 1rem;
     padding: 4px;
 }

 .stck-actions:hover {
     color: #333;
 }

 @media (max-width: 768px) {
     .stck-container {
         padding: 15px;
     }

     .stck-nav {
         overflow-x: auto;
         white-space: nowrap;
         -webkit-overflow-scrolling: touch;
     }

   

     .stck-search {
         margin-left: 0;
         margin-top: 10px;
     }

     .stck-search-input {
         width: 100%;
     }

     .stck-table-container {
         overflow-x: auto;
     }

     .stck-table {
         min-width: 800px;
     }
 }

 @media (max-width: 480px) {
     .stck-table th,
     .stck-table td {
         padding: 12px 8px;
         font-size: 0.8125rem;
     }

     .stck-row-logo {
         width: 28px;
         height: 28px;
     }
 }


.pgw-testimonials-section {
  min-height: 100vh;
  margin-top: 5rem;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  display: flex;
  align-items: center;
}

.pgw-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.pgw-header {
  text-align: center;
  margin-bottom: 40px;
}

.pgw-main-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.pgw-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.pgw-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  height: 600px;
  max-height: 70vh;
}

.pgw-left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.pgw-right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.pgw-main-testimonial {
  flex: 2;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 400px;
  max-height: 65%;
}

.pgw-video-container {
  position: relative;
  height: 100%;
}

.pgw-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pgw-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  color: #000;
}

.pgw-testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: auto;
  max-width: 400px;
  font-style: italic;
}

.pgw-author-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

.pgw-author-avatar {
  flex-shrink: 0;
}

.pgw-avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.8);
}

.pgw-author-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.pgw-author-name {
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}

.pgw-author-location {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.pgw-rating {
  margin-top: 5px;
}

.pgw-stars {
  color: #ff7535;
  font-size: 1rem;
}

.pgw-video-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pgw-play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.9);
  border: none;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pgw-play-button:hover {
  background-color: white;
  transform: scale(1.1);
}

.pgw-video-label {
  font-size: 0.8rem;
  opacity: 0.9;
  text-align: center;
}

/* Second testimonial card */
.pgw-text-testimonial {
  flex: 1;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 180px;
  max-height: 32%;
}

.pgw-text-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.pgw-quote-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin: 0 0 20px 0;
  flex: 1;
}

.pgw-author-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.pgw-author-info .pgw-author-details {
  flex: 1;
}

.pgw-author-info .pgw-author-name {
  color: #333;
}

.pgw-author-info .pgw-author-location {
  color: #666;
}

/* Right column testimonial cards */
.pgw-testimonial-card {
  flex: 1;
  border-radius: 15px;
  padding: 25px;
  color: white;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 290px;
  max-height: 48%;
  position: relative;
  overflow: hidden;
}

.pgw-card-orange {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
}

.pgw-card-green {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
}

.pgw-testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.pgw-quote-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  align-self: flex-start;
}

.pgw-testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 20px 0;
  flex: 1;
  color: rgba(10,10,10,0.9);
}

.pgw-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.pgw-testimonial-author .pgw-author-details {
  flex: 1;
}

.pgw-testimonial-author .pgw-author-name {
  color: rgba(10,10,10,0.9);
  font-weight: 600;
}

.pgw-testimonial-author .pgw-author-location {
  color: rgba(10,10,10,0.7);
}

.pgw-testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 1024px) {
  .pgw-testimonials-section {
    min-height: auto;
    padding: 60px 20px;
  }
  
  .pgw-content-grid {
    height: auto;
    max-height: none;
  }
  
  .pgw-main-testimonial {
    min-height: 350px;
    height: auto;
    max-height: none;
  }
  
  .pgw-text-testimonial {
    min-height: 150px;
    height: auto;
    max-height: none;
    padding: 25px;
  }
  
  .pgw-testimonial-card {
    min-height: 220px;
    height: auto;
    max-height: none;
  }
  
  .pgw-author-section {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .pgw-video-control {
    flex-direction: row;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .pgw-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pgw-left-column,
  .pgw-right-column {
    gap: 20px;
  }
  
  .pgw-main-testimonial {
    min-height: 300px;
  }
  
  .pgw-text-testimonial {
    min-height: 140px;
    padding: 20px;
  }
  
  .pgw-main-title {
    font-size: 2rem;
  }
  
  .pgw-video-overlay {
    padding: 25px;
  }
  
  .pgw-testimonial-text {
    font-size: 1rem;
  }
  
  .pgw-testimonial-card {
    padding: 20px;
    min-height: 200px;
  }
  
  .pgw-author-section {
    gap: 12px;
  }
  
  .pgw-avatar-img {
    width: 45px;
    height: 45px;
  }
  
  .pgw-video-control {
    align-items: center;
  }
  
  .pgw-play-button {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .pgw-testimonials-section {
    padding: 40px 15px;
  }
  
  .pgw-main-testimonial {
    min-height: 280px;
  }
  
  .pgw-text-testimonial {
    min-height: 130px;
    padding: 18px;
  }
  
  .pgw-main-title {
    font-size: 1.8rem;
  }
  
  .pgw-video-overlay {
    padding: 20px;
  }
  
  .pgw-testimonial-card {
    padding: 18px;
    min-height: 180px;
  }
  
  .pgw-quote-text,
  .pgw-testimonial-quote {
    font-size: 0.9rem;
  }
  
  .pgw-author-name {
    font-size: 0.85rem;
  }
  
  .pgw-author-location {
    font-size: 0.75rem;
  }
  
  .pgw-avatar-img {
    width: 40px;
    height: 40px;
  }
  
  .pgw-author-section {
    gap: 10px;
  }
  
  .pgw-author-info,
  .pgw-testimonial-author {
    gap: 12px;
  }
  
  .pgw-quote-icon {
    font-size: 2.5rem;
  }
}

.faq-container {
  max-width: 1200px;
  margin: 4rem auto;
  margin-top: 9rem !important;
  padding: 60px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.faq-header-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.faq-main-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin: 0;
  line-height: 1.2;
  flex: 1;
}

.faq-subtitle-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

.faq-image-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.faq-gallery-item {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: white;
}

.partner-logo {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.logo-placeholder {
  text-align: center;
  padding: 20px;
}

.logo-placeholder span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #495057;
  letter-spacing: 2px;
}

.faq-questions-wrapper {
  border-top: 1px solid #e5e5e5;
  width: 55vw;
}

.faq-question-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question-header {
  display: flex;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-question-header:hover {
  background-color: #fafafa;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: -10px;
  margin-right: -10px;
  border-radius: 8px;
}

.faq-question-number {
  font-size: 1rem;
  color: #999;
  font-weight: 500;
  min-width: 30px;
}

.faq-question-title {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c2c2c;
  margin: 0;
  line-height: 1.4;
}

.faq-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle-btn:hover {
  background-color: #f0f0f0;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #666;
  transition: all 0.3s ease;
}

.faq-toggle-icon::before {
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-toggle-icon::after {
  width: 2px;
  height: 20px;
  transform: translate(-50%, -50%);
}

.faq-btn-expanded .faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding-left: 50px;
}

.faq-answer-visible {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Footer Styles */
.footer {
  background-color: white;
  color: #000;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0;
  padding: 60px 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}



.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 1px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: black;
}

.newsletter-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: black;
}

.newsletter-description {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.5;
  margin: 0;
}

.newsletter-form {
  display: flex;
  background: #f0f0f0;
  overflow: hidden;
  margin-top: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: #666;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-button {
  background: #4a5568;
  border: none;
  color: white;
  padding: 12px 15px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.newsletter-button:hover {
  background: #2d3748;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  color: #565555;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #6d6c6c;
  padding: 20px 0;
}

.copyright {
  color: #3a3a3a;
  font-size: 0.8rem;
  margin: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 30px 15px;
    margin: 0;
  }

  .faq-header-section {
    flex-direction: column;
    gap: 20px;
  }
  
  .faq-questions-wrapper {
    width: 100%;
  }
  
  .faq-main-title {
    font-size: 2rem;
  }
  
  .faq-subtitle-text {
    max-width: none;
  }
  
  .faq-image-gallery {
    flex-direction: column;
    gap: 15px;
  }
  
  .partner-logo {
    height: 120px;
  }
  
  .faq-question-header {
    padding: 25px 0;
  }
  
  .faq-answer-content {
    padding-left: 0;
    padding-top: 10px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .social-links {
    flex-wrap: wrap;
    gap: 15px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background: #f8f9fa;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

.sjdd-cards-section {
  display: flex;
  gap: 8px;
  max-width: 1200px;
  width: 100%;
  height: 500px;
}

.sjdd-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.sjdd-card-1 {
  flex: 3;
  background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.sjdd-card-2 {
  flex: 1;
  background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2015&q=80');
}

.sjdd-card-3 {
  flex: 1;
  background-image: url('https://images.unsplash.com/photo-1691643158804-d3f02eb456a3?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8c3RvY2slMjBjaGFydHxlbnwwfHwwfHx8MA%3D%3D');
}

.sjdd-card.sjdd-expanded {
  flex: 3;
}

.sjdd-card.sjdd-condensed {
  flex: 1;
}

.sjdd-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  margin: 20px;
  transition: all 0.4s ease;
}

.sjdd-card.sjdd-condensed .sjdd-card-content {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  margin: 0;
  border-radius: 0 0 20px 20px;
  padding: 20px;
}

.sjdd-card.sjdd-condensed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}

.sjdd-card-logo {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  opacity: 1;
  transition: all 0.3s ease;
}

.sjdd-card-title {
  font-size: 16px;
  color: #2c2c2c;
  line-height: 1.5;
  font-weight: 400;
  opacity: 1;
  transition: all 0.3s ease;
}

.sjdd-condensed .sjdd-card-logo {
  color: #ffffff;
  opacity: 1;
  font-size: 16px;
}

.sjdd-condensed .sjdd-card-title {
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
}

.sjdd-arrow-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.sjdd-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.sjdd-arrow-btn svg {
  width: 20px;
  height: 20px;
  fill: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.sjdd-condensed .sjdd-arrow-btn svg {
  fill: rgba(255, 255, 255, 0.9);
}

/* Hide arrow on expanded cards */
.sjdd-card.sjdd-expanded .sjdd-arrow-btn {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {

 .sjdd-card-3 {
display: none;
  }
  .autop{
    display: none;
  }
  .sjdd-card {
  height: 80%;
}
main {
  min-height: 70vh;
}
}

