:root {
  --accent: #f5c518;
  --accent-dark: #d4a017;
  --bg: #13141a;
  --bg-card: #1c1e27;
  --bg-light: #1e2030;
  --text: #e8e8e8;
  --text-muted: #8a8fa8;
  --border: rgba(255, 255, 255, 0.08);
}

.ks-hero-container .ks-badge {
  color: white !important;
}

/* Sticky Header Wrappers */
.sticky-top-disclaimer {
  position: sticky;
  top: 0;
  z-index: 5;
}

.sticky-header-nav {
  position: sticky;
  top: 31px; /* Height of disclaimer-bar */
  z-index: 5;
}

/* Fixed Bottom Disclaimer Styles */
.fixed-bottom-disclaimer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  color: #cbcbcb;
  z-index: 999999; /* Highest possible to stay above Zendesk etc. */
  padding: 8px 0;
  font-size: 11px;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.fixed-bottom-disclaimer .disclaimer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.fixed-bottom-disclaimer .disclaimer-content {
  text-align: center;
  flex: 1;
}

.fixed-bottom-disclaimer .disclaimer-content strong {
  color: #f5c518;
}

.fixed-bottom-disclaimer .btn-read-more {
  background: #f5c518;
  color: #000000;
  border: none;
  padding: 2px 12px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.fixed-bottom-disclaimer .btn-read-more:hover {
  background: #d4a017;
}

/* Mobile specific truncation and layout */
@media (max-width: 767px) {
  .sticky-header-nav {
    top: 25px;
  }

  .fixed-bottom-disclaimer {
    padding: 6px 0;
  }

  .fixed-bottom-disclaimer .disclaimer-flex {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .fixed-bottom-disclaimer .disclaimer-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: left;
    width: 100%;
  }

  .fixed-bottom-disclaimer .disclaimer-content.expanded {
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    display: block !important;
    max-height: 2000px !important;
    overflow: visible !important;
  }

  .fixed-bottom-disclaimer .btn-read-more {
    align-self: flex-end;
  }
}

.disclaimer-bar {
  background-color: #000000;
  color: #ffffff;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-bar marquee {
  vertical-align: middle;
}
.disclaimer-bar strong {
  color: #ffffff;
  font-weight: 700;
}

.footer-marquee-wrapper {
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.text-gold {
  color: #f5d76e !important;
}
.marquee-heading {
  z-index: 2;
  background: #212529;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.marquee-content-scroll {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-slide-left 40s linear infinite;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
}

.ks-services-cta .ks-cta-btn-2 {
  display: inline-flex;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.ks-cta-btn-2 {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1c1e27;
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.3s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  animation: shadowBlink 0.5s ease-in-out infinite;
}

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

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* AOS handles scroll animations */

/* ===== MARQUEE ===== */
.ks-marquee-wrapper {
  background: var(--accent);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
  z-index: 1001;
}
.ks-marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 50s linear infinite;
}
.ks-marquee-track:hover {
  animation-play-state: paused;
}
.ks-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
  padding: 0 1.5rem;
}
.ks-marquee-sep {
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.65rem;
  padding: 0 0.3rem;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== NAVBAR ===== */
.ks-navbar {
  background: rgba(19, 20, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative !important; /* Changed from sticky */
  top: auto !important;
  z-index: 1000;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.ks-navbar.scrolled {
  background: rgba(19, 20, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.ks-navbar-inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

/* LOGO */
.ks-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ks-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  font-family: "Inter", serif;
  transition: transform 0.3s ease;
}
.ks-logo:hover .ks-logo-icon {
  transform: rotate(10deg) scale(1.05);
}
.ks-logo-text {
  font-family: "Inter", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.ks-logo-text span {
  color: var(--accent);
}

/* NAV RIGHT */
.ks-nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ks-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
.ks-phone:hover {
  color: var(--accent);
}
.ks-phone i {
  color: var(--accent);
}
.ks-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}
.ks-live-chat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.ks-live-chat:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.ks-live-chat i {
  color: var(--accent);
}

/* CTA BUTTON */
@keyframes shadowBlink {
  0%,
  100% {
    box-shadow:
      0 3px 6px 0 rgba(245, 197, 24, 0.15),
      0 -3px 6px 0 rgba(245, 197, 24, 0.15);
  }
  50% {
    box-shadow:
      0 6px 14px 2px rgba(245, 197, 24, 0.4),
      0 -6px 14px 2px rgba(245, 197, 24, 0.4);
  }
}
@keyframes shimmerSweep {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.ks-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #111;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.3s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  animation: shadowBlink 0.5s ease-in-out infinite;
}
.ks-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmerSweep 1.4s ease-in-out infinite;
}
.ks-cta-btn:hover {
  background: #ffd700;
  color: #111;
  transform: translateY(-3px);
}
.ks-cta-btn .btn-inner {
  font-family: "DM Sans", sans-serif;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Nav */
.ks-mobile-nav-btns {
  display: none;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .ks-nav-right {
    display: none;
  }
  .ks-mobile-nav-btns {
    display: flex;
  }
  .ks-mobile-nav-btns .ks-live-chat,
  .ks-mobile-nav-btns .ks-cta-btn {
    padding: 7px 12px;
    font-size: 0.8rem;
  }
  .ks-mobile-nav-btns a.ks-live-chat {
    display: none;
  }
}
@media (max-width: 400px) {
  .ks-mobile-nav-btns .ks-live-chat .btn-text,
  .ks-mobile-nav-btns .ks-cta-btn .btn-text {
    display: none;
  }
}

/* ===== HERO ===== */
.ks-hero {
  position: relative;
  min-height: 100vh;
  /*display: flex;*/
  align-items: center;
  overflow: hidden;
  background: #0d0e14;
}
.ks-hero-bg {
  position: absolute;
  inset: 0;
  background: url(../img/studio-arrangement-work.webp);
  z-index: 0;
  background-attachment:fixed;
  background-position:center;
}
/* Animated dots pattern */
.ks-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000a1;
  background-size: 40px 40px;
  z-index: 0;
}

.ks-hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 90px 2rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.ks-hero-title {
  font-family: "Inter", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.ks-hero-highlight {
  color: #f5c518;
}
.ks-hero-desc {
  font-size: 1.1rem;
  color: #c7c7c7;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.ks-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
  gap: 0.5rem 0;
}
.ks-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: black;
}
.ks-check-item i {
  color: var(--accent);
  font-size: 0.75rem;
  background: rgba(245, 197, 24, 0.12);
  padding: 4px;
  border-radius: 4px;
}

.ks-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.ks-hero-btn-primary {
  font-family: "DM Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #111;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s;
  box-shadow:
    0 5px 10px 1px rgb(245 197 24 / 30%),
    0 -5px 10px 1px rgb(245 197 24 / 30%);
  animation: floatUpDown 2.5s ease-in-out infinite;
}
.ks-hero-btn-primary:hover {
  background: #ffd700;
  color: #111;
}

.ks-hero-btn-outline {
  font-family: "DM Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}
.ks-hero-btn-outline:hover {
  background: var(--accent);
  color: #111;
  transform: translateY(-2px);
}

.ks-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}
.ks-stars i {
  color: var(--accent);
  font-size: 0.9rem;
}
.ks-rating-text {
  font-size: 0.85rem;
  color: #888;
}
.ks-rating-text strong {
  color: #fff;
}

/* Trust labels */
.ks-trust-labels {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.ks-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #7a7f96;
  font-weight: 500;
}
.ks-trust-item i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* FORM CARD */
.ks-form-card {
  background: rgba(28, 30, 39, 0.95);
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.ks-form-title {
  font-family: "Inter", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.ks-form-sub {
  font-size: 0.82rem;
  color: #666;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.ks-form-line {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.ks-form-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress, 50%);
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.ks-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 0.9rem;
  outline: none;
  transition:
    border 0.2s,
    background 0.2s;
}
.ks-input::placeholder {
  color: #444;
}
.ks-input:focus {
  border-color: var(--accent);
  background: rgba(245, 197, 24, 0.04);
}

.ks-form-btn {
  width: 100%;
  background: var(--accent);
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  animation: shadowBlink 0.5s ease-in-out infinite;
}
.ks-form-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmerSweep 1.4s ease-in-out infinite;
}
.ks-form-btn span,
.ks-form-btn i {
  position: relative;
  z-index: 1;
}
.ks-form-btn:hover {
  background: #ffd700;
  transform: translateY(-3px);
}
.ks-textarea {
  height: 120px;
  resize: none;
}
.ks-form-two-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.ks-form-two-btns .ks-form-btn {
  margin-bottom: 0;
}
.ks-form-btn-back {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ks-form-btn-back:hover {
  background: rgba(255, 255, 255, 0.1);
}
.ks-form-footer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #555;
}
.ks-form-footer i {
  margin-right: 4px;
}

*/* ===== SPECIAL OFFER STICKER ===== */ 
.ks-sticker-badge {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 100px;
  height: 100px;
  z-index: 10;
  animation: stickerWobble 3s ease-in-out infinite;
  cursor: pointer;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
}
.ks-sticker-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes stickerWobble {
  0%,
  100% {
    transform: rotate(-6deg) scale(1);
  }
  25% {
    transform: rotate(6deg) scale(1.06);
  }
  50% {
    transform: rotate(-4deg) scale(1.03);
  }
  75% {
    transform: rotate(5deg) scale(1.05);
  }
}

@media (max-width: 992px) {
  .ks-hero-container {
      display:block;
    grid-template-columns: 1fr;
    padding: 60px 1.5rem;
  }
  .ks-hero-right {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .ks-sticker-badge {
    top: -18px;
    right: -10px;
    width: 75px;
    height: 75px;
  }
  .ks-sticker-inner {
    width: 70px;
    height: 70px;
  }
  .sticker-pct {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .ks-checklist {
    grid-template-columns: 1fr;
  }
  .ks-hero-btns {
    flex-direction: column;
  }
  .ks-hero-btn-primary,
  .ks-hero-btn-outline {
    justify-content: center;
  }
}

/* ===== AWARD BANNER ===== */
.ks-award-banner {
  background: linear-gradient(135deg, #1a1c28 0%, #1e2035 100%);
  border-top: 1px solid rgba(245, 197, 24, 0.1);
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
  padding: 18px 2rem;
  overflow: hidden;
}
.ks-award-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
  gap: 0.5rem;
}
.ks-award-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #9a9fb8;
  padding: 0 0.5rem;
  transition: color 0.2s;
}
.ks-award-item:hover {
  color: var(--accent);
}
.ks-award-item i {
  color: var(--accent);
  font-size: 1rem;
}
.ks-award-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
}

/* ===== STATS ===== */
.ks-stats {
  background: #f5c518;
  padding: 80px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ks-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(245, 197, 24, 0.05) 0%,
    transparent 60%
  );
}
.ks-stats-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #555;
  margin-bottom: 3rem;
  position: relative;
}
.ks-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
}
.ks-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.ks-stat-icon {
  width: 58px;
  height: 58px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgb(0 0 0 / 83%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  transition:
    transform 0.3s,
    background 0.3s;
}
.ks-stat-item:hover .ks-stat-icon {
  transform: scale(1.1);
  background: rgba(245, 197, 24, 0.18);
}
.ks-stat-icon i {
  font-size: 1.4rem;
  color: black;
}
.ks-stat-number {
  font-family: "Inter", serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ks-stat-text {
  font-size: 1.05rem;
  color: black;
  font-weight: 500;
}
@media (max-width: 768px) {
  .ks-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}

/* ===== SERVICES ===== */
.ks-services {
  background: url("../img/services-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 73px 2rem;
  position: relative;
  overflow: hidden;
  background-attachment:fixed;
}
.ks-services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ks-services-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.ks-badge {
  color: black;
}
.ks-services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.ks-services-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: black;
  margin-bottom: 1rem;
  display: block;
}
.ks-services-title {
  font-family: "Inter", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: black;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.ks-services-title span {
  color: #686767;
}
.ks-services-sub {
  font-size: 1rem;
  color: black;
  line-height: 1.7;
}

.ks-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.ks-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.ks-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f5c518, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.ks-service-card:hover {
  border-color: rgb(245 197 24 / 30%);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.ks-service-card:hover::before {
  transform: scaleX(1);
}

.ks-service-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: transform 0.3s;
}
.ks-service-card:hover .ks-service-icon {
  transform: scale(1.1) rotate(-5deg);
}
.ks-service-icon i {
  font-size: 1.3rem;
  color: var(--accent);
}
.ks-service-card h3 {
  font-family: "Inter", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.ks-service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.ks-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 50%;
  margin-top: 1.2rem;
  transition: all 0.3s;
  color: var(--accent);
  font-size: 0.8rem;
}
.ks-service-card:hover .ks-card-arrow {
  background: var(--accent);
  color: #111;
  transform: translateX(4px);
}

.ks-services-cta {
  text-align: center;
}
.ks-services-cta .ks-cta-btn {
  display: inline-flex;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.ks-services-cta-note {
  font-size: 0.82rem;
  color: #555;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .ks-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ks-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== WHY CHOOSE US ===== */
.ks-why {
  background: linear-gradient(135deg, #11121a 0%, #161820 100%);
  /*background: url("../img/why.jpg");*/
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 80px 2rem; /* reduced from 100px to shift content up */
  position: relative;
  overflow: hidden;
}
/*.ks-why::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -200px;*/
/*  right: -200px;*/
/*  width: 600px;*/
/*  height: 600px;*/
/*  background: radial-gradient(*/
/*    circle,*/
/*    rgba(245, 197, 24, 0.04) 0%,*/
/*    transparent 70%*/
/*  );*/
/*  pointer-events: none;*/
/*}*/
.ks-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #00000075;
  background-size: 40px 40px;
  z-index: 0;
}
.ks-why-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.ks-why-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
  font-family: "DM Sans", sans-serif;
}
.ks-why-title {
  font-family: "Inter", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.ks-why-title span {
  color: #bfbfbf;
}
.ks-why-desc {
  font-size: 0.95rem;
  color: white;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.ks-why-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0; /* awards row handles spacing below */
}

/* ===== AWARD LOGOS ===== */
.ks-awards-row {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ks-awards-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
}
.ks-awards-logos {
  display: flex;
  align-items: center;
  /* gap: 1rem; */
  flex-wrap: wrap;
}
.ks-award-item {
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}
.ks-award-item:hover {
  transform: scale(1.1) rotate(-4deg);
  filter: drop-shadow(0 6px 18px rgba(245, 197, 24, 0.35));
}
.ks-award-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===== END AWARD LOGOS ===== */

.ks-why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ks-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  transition: all 0.3s ease;
}
.ks-why-card:hover {
  border-color: rgb(245 197 24 / 30%);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.ks-why-card h3 {
  font-family: "Inter", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  margin-top: 0.8rem;
}
.ks-why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .ks-why-container {
    grid-template-columns: 1fr;
  }
  .ks-why-right {
    grid-template-columns: repeat(2, 1fr);
  }
  .ks-awards-logos {
    gap: 0.8rem;
  }
  .ks-award-item {
    width: 62px;
    height: 62px;
  }
}
@media (max-width: 480px) {
  .ks-why-right {
    grid-template-columns: 1fr;
  }
  .ks-why-btns {
    flex-direction: column;
  }
  .ks-award-item {
    width: 56px;
    height: 56px;
  }
}

/* ===== PORTFOLIO ===== */
/* .ks-portfolio {
  background: #13141c;
  padding: 100px 2rem;
}
.ks-portfolio-container {
  max-width: 1440px;
  margin: 0 auto;
}
.ks-portfolio-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ks-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.ks-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.ks-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.ks-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.ks-books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.ks-book-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
}
.ks-book-item.hidden {
  display: none;
}
.ks-book-cover {
  border-radius: 12px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.ks-book-cover::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  width: 3px;
  height: 90%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.15) 80%,
    transparent 100%
  );
  z-index: 2;
  border-radius: 0 2px 2px 0;
}
.ks-book-item:hover .ks-book-cover {
  transform: scale(1.04) translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(245, 197, 24, 0.1);
}
.ks-book-info {
  text-align: center;
  color: #fff;
}
.ks-book-line {
  width: 30px;
  height: 2px;
  background: var(--accent);
  margin: 8px auto;
  border-radius: 2px;
}
.ks-book-info h4 {
  font-family: "Inter", serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 4px 0;
}
.ks-book-info p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.ks-book-cat {
  font-size: 0.75rem;
  color: #555;
  text-align: center;
}
@media (max-width: 768px) {
  .ks-books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */

.section-wrapper {
  padding: 80px 20px;
}

.portfolio-section {
  background: url(../img/step-bg.jpg);
  /*background-repeat: no-repeat;*/
  /*background-size: cover;*/
  background-attachment:fixed;
}

.portfolio-section .section-title {
  color: black;
}

.gold-bar {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.section-title {
  font-family: "Inter", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
}
.section-wrapper .section-subtitle {
  color: #666;
  font-weight: 300;
  max-width: 700px !important;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* Tabs */
.genre-tabs {
  /* border-bottom: 2px solid #e0ddd6; */
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}
.genre-tabs li a {
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  color: #888;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 10px 18px;
  background: none;
  transition: all 0.3s;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.genre-tabs li a:hover {
  color: var(--accent);
}
.genre-tabs li a.active {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
}

/* Book Card */
.book-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.35s;
  cursor: pointer;
  display: block;
}
.book-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}
.book-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tab Panels */
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: flex;
  flex-wrap: wrap;
}

/* Fade animation */
.tab-panel.active {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 575px) {
  .book-card img {
    height: 260px;
  }
}

.our-sponser {
  padding: 40px 0;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}
.owl-site-logo2 .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.owl-site-logo2 .item img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  height: 140px;
}

/* ===== TESTIMONIALS ===== */
.ks-testimonials {
  /*background: #161820;*/
  background: url("../img/reviews-bg.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 100px 2rem;
}

.ks-testimonials-container {
  max-width: 1440px;
  margin: 0 auto;
}
.ks-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.ks-testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ks-testi-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle at 100% 100%,
    rgba(245, 197, 24, 0.05) 0%,
    transparent 70%
  );
}
.ks-testi-card:hover {
  border-color: rgb(245 197 24 / 30%);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.ks-quote-icon {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.7;
}
.ks-testi-text {
  font-size: 0.92rem;
  color: #c0c4d8;
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.ks-testi-stars i {
  color: var(--accent);
  font-size: 0.85rem;
}
.ks-testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ks-testi-footer h4 {
  font-family: "Inter", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.ks-testi-footer span {
  font-size: 0.78rem;
  color: #555;
}
.ks-testi-badge {
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgb(245 197 24 / 30%);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .ks-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HOW IT WORKS ===== */
.ks-hiw {
  /* background: #11121a; */
  padding: 100px 2rem;
  background: url(../img/step-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.ks-hiw-container {
  max-width: 1440px;
  margin: 0 auto;
}
.ks-hiw-title {
  font-family: "Inter", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: black;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.ks-hiw-title span {
  color:#f5c518;
}
.ks-hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.ks-hiw-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  transition: all 0.3s ease;
  position: relative;
}
.ks-hiw-card:hover {
  border-color: rgb(245 197 24 / 30%);
  transform: translateY(-5px);
}
.ks-hiw-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.ks-hiw-num {
  font-family: "Inter", serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(245, 197, 24, 0.12);
  line-height: 1;
}
.ks-hiw-card h3 {
  font-family: "Inter", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.ks-hiw-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .ks-hiw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ks-hiw-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRICING ===== */
.pricing-section {
  background: url("../img/pricing.jpg");
  padding: 80px 0 100px;
  background-repeat: no-repeat;
  background-size: 100%;
}

.pricing-section .container {
  max-width: 1440px;
}
.pricing-sticker {
  text-align: center;
  background: white;
  border: 1px solid rgb(245 197 24 / 30%);
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  margin: 0 auto 2rem;
  display: block;
  width: fit-content;
  font-family: "DM Sans", sans-serif;
  animation: shadowBlink 1s ease-in-out infinite;
}
.section-label {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: "Inter", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title span {
  color: #bfbfbf;
}
.section-subtitle {
  font-size: 15px;
  color: white;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-card {
  background: linear-gradient(145deg, #1c1e2a, #161820);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 36px 32px 32px;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 197, 24, 0.2);
}
.pricing-card.popular {
  background: linear-gradient(145deg, #1e1f2e, #18191f);
  box-shadow:
    0 0 50px rgba(212, 160, 23, 0.2),
    0 0 100px rgba(212, 160, 23, 0.05);
}
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 30px;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}
.plan-name {
  font-family: "Inter", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.starting-from {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 4px;
}
.price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 28px;
}
.price .dollar-sign {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
}
.price .amount {
  font-family: "Inter", serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #b0b5cc;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.4;
}
.features-list li:last-child {
  border-bottom: none;
}
.features-list li .check {
  color: var(--accent);
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}
.btn-consult {
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-consult-outline {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid var(--accent-dark);
  color: var(--accent-dark);
}
.btn-consult-outline:hover {
  background: var(--accent-dark);
  color: #000;
}
.btn-consult-filled {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  border: none;
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}
.btn-consult-filled:hover {
  box-shadow: 0 6px 28px rgba(212, 160, 23, 0.5);
}
.no-obligation {
  font-size: 11px;
  color: #444;
  text-align: center;
  margin-top: 10px;
}

/* ===== RISK FREE ===== */
.riskfree-section {
  background: #f5c518;
  /*background: url("../img/new_ban.png");*/
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 90px;
}
.riskfree-section .container {
  max-width: 1440px;
}
.riskfree-title {
  font-family: "Inter", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  /*color: black;*/
  margin-bottom: 48px;
}
.riskfree-title span {
  color:  black;
}
.rf-icon-box {
  width: 68px;
  height: 68px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgb(0 0 0 / 62%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.rf-icon-box:hover {
  transform: scale(1.1);
}
.rf-title {
  font-family: "Inter", serif;
  font-size: 18px;
  font-weight: 700;
  color: black;
  margin-bottom: 10px;
}
.rf-desc {
  font-size: 13px;
  color: #626262;
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ===== PAYMENT BANNER ===== */
.ks-payment-banner {
  background: linear-gradient(135deg, #1a1c28, #1e2035);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 2rem;
}
.ks-payment-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1440px;
  margin: 0 auto;
}
.ks-payment-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #666;
  font-family: "DM Sans", sans-serif;
}
.ks-pay-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #888;
  font-family: "DM Sans", sans-serif;
  transition: color 0.2s;
}
.ks-pay-item:hover {
  color: var(--accent);
}
.ks-pay-item i {
  font-size: 1.1rem;
}
.ks-pay-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
}

/* ===== FAQ ===== */
.ks-faq {
  /* background: #13141c; */
  padding: 100px 2rem;
  background: url(../img/faq-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.ks-faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.ks-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ks-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
  margin-bottom:8px;
}
.ks-faq-item.open {
  border-color: rgba(245, 197, 24, 0.35);
}
.ks-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: #d0d4e8;
  font-size: 0.98rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  padding: 1.2rem 1.4rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.ks-faq-q:hover {
  color: var(--accent);
}
.ks-faq-icon {
  color: #555;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    color 0.3s;
}
.ks-faq-item.open .ks-faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}
.ks-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 1.4rem;
}
.ks-faq-item.open .ks-faq-a {
  max-height: 200px;
  padding: 0 1.4rem 1.2rem;
}
.ks-faq-a p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.9rem;
  font-family: "DM Sans", sans-serif;
}

/* ===== CTA SECTION ===== */
.ks-cta-section {
  background: url(../img/step-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
  background-attachment:fixed;
}
.ks-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(245, 197, 24, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(100, 80, 200, 0.04) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.ks-cta-section-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ks-cta-section-title {
  font-family: "Inter", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: black;
  line-height: 1.15;
  margin: 1.2rem 0;
}
.ks-cta-section-title span {
  color: #686767;
}
.ks-cta-section-desc {
  font-size: 1.05rem;
  color: black;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.ks-cta-highlight {
  font-size: 0.92rem;
  color: black;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ks-cta-footnote {
  font-size: 0.78rem;
  color: #555;
  margin-top: 1rem;
}
@media (max-width: 992px) {
  .ks-cta-section-container {
    grid-template-columns: 1fr;
  }
  .ks-cta-right {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}

/* ===== FOOTER ===== */
.ks-footer {
  /*background: url("../img/footer.webp");*/
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.ks-footer-top {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 2rem 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ks-footer-desc {
  font-size: 0.88rem;
  color: white;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  max-width: 460px;
}
.ks-footer-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.ks-footer-payment {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.ks-footer-security {
  display: flex;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: white;
}
.ks-footer-security i {
  margin-right: 5px;
  color: var(--accent);
}
.ks-footer-right {
  text-align: right;
}
.ks-footer-contact-title {
  font-family: "Inter", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.ks-footer-contact-item {
  font-size: 0.88rem;
  color: white;
  margin-bottom: 0.4rem;
}
.ks-footer-contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}
.ks-footer-contact-item a:hover {
  color: var(--accent);
}
.ks-footer-avail {
  font-size: 0.8rem;
  color: white;
  line-height: 1.7;
  margin: 1rem 0;
}
.ks-footer-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* Award tags in footer */
.ks-footer-awards {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.ks-award-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.15);
  color: #888;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.ks-award-tag i {
  color: var(--accent);
  font-size: 0.7rem;
}

.ks-footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.ks-footer-bottom p {
  font-size: 0.82rem;
  color: white;
}
.ks-footer-links {
  display: flex;
  gap: 1.5rem;
}
.ks-footer-links a {
  font-size: 0.82rem;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}
.ks-footer-links a:hover {
  color: var(--accent);
}
.ks-footer-disclaimer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}
.ks-footer-disclaimer p {
  font-size: 0.8rem;
  color: white;
  line-height: 1.7;
}

/* Footer Visit Btn */
.ks-footer-visit-btn {
  position: relative;
  overflow: hidden;
  animation: shadowBlink 0.5s ease-in-out infinite;
}
.ks-footer-visit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmerSweep 1.4s ease-in-out infinite;
}
.ks-footer-visit-btn:hover {
  animation: none;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .ks-footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ks-footer-right {
    text-align: left;
  }
  .ks-footer-badges,
  .ks-footer-awards {
    justify-content: flex-start;
  }
  .ks-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Fade in animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.delay-2 {
  animation-delay: 0.25s;
}
.delay-3 {
  animation-delay: 0.4s;
}
.delay-4 {
  animation-delay: 0.55s;
}

.success .ks-services-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 1rem;
  display: block;
}
.success .ks-services-title {
  font-family: "Inter", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.success .ks-services-title span {
  color: #f5c518;
}
.success .ks-services-sub {
  font-size: 1rem;
  color: white;
  line-height: 1.7;
}

.ks-faq .ks-services-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 1rem;
  display: block;
}
.ks-faq .ks-services-title {
  font-family: "Inter", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.ks-faq .ks-services-title span {
  color: #f5c518;
}
.ks-faq .ks-services-sub {
  font-size: 1rem;
  color: white;
  line-height: 1.7;
}

.happy-authors-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.authors-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.authors-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: black;
  margin-bottom: 25px;
  font-family: 'Inter';
}

.authors-header .highlight {
  color: var(--accent);
}

.authors-header p {
  font-size: 16px;
  color: #5a6c7d;
  line-height: 1.8;
}

.authors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.author-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.author-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.author-info {
  padding: 20px;
  text-align: center;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.author-info p {
  font-size: 14px;
  color: #5a6c7d;
  font-style: italic;
  line-height: 1.5;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #eda33a;
  padding: 28px 0;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 80px;
  animation: scroll 20s linear infinite;
  align-items: center;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.logo-item img {
  height: 55px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  
}

.logo-item img:hover {
  transform: scale(1.06);
  opacity: 1;
}

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

@media (max-width: 768px) {
  .logo-track {
    gap: 40px;
  }

  .logo-item {
    min-width: 130px;
  }

  .logo-item img {
    height: 40px;
  }
}


.modal-content {
    background: none;
    border: none;
}

.modal-header {
    background: none;
    border: none;
    padding: 0;
}

.modal-body {
    padding-top: 0;
}


.ks-disclaimer {
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    margin-top: 20px;
  }

  .disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    text-align: center;
    margin: 0;
  }