/* ================= BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand: #0b9ca4e4;
  --text-dark: #000000;
  --text-muted: #555;
  --bg-soft: #fff6df;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  background: #f9fbff;
  border-bottom: 2px solid var(--brand);
  z-index: 1000;
}

.nav-inner {
  max-width: 1280px;
  margin: auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
/* .logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.3px;
} */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.logo img {
  max-height: 44px;     /* desktop ideal */
  width: auto;
  object-fit: contain; /* MOST IMPORTANT */
  display: block;
}

/* Tablet */
@media (max-width: 1024px) {
  .logo img {
    max-height: 38px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo img {
    max-height: 32px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 32px;      /* mobile height */
  }
}

.logo span {
  color: var(--brand);
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a,
.nav-item span {
  font-size: 16px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-item span:hover {
  color: var(--brand);
}

.nav-links .active {
  color: var(--brand);
  font-weight: 600;
}

/* Dropdown */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 42px;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 14px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.dropdown a:hover {
  background: #f8f8f8;
}

/* CTA */
.nav-cta {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 3px;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  padding: 26px;
  transform: translateY(-100%);
  transition: 0.35s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateY(0);
}

/* Mobile Header */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Mobile Links */
.mobile-menu a,
.mobile-toggle {
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: var(--text-dark);
}

/* Mobile Dropdown */
.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 14px;
}

.mobile-dropdown a {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  padding: 10px 0;
}

/* Mobile CTA */
.mobile-cta {
  margin-top: auto;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: 90px 28px;
  background: var(--bg-soft);
  overflow: hidden;
}

/* Grid / dots background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--brand) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
}

/* Left */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
}

.hero-left h1 {
  font-size: 52px;
  line-height: 1.15;
  margin: 18px 0;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-left h1 span {
  color: var(--brand);
}

.hero-left p {
  max-width: 540px;
  font-size: 17px;
  color: var(--text-muted);
}

.primary-btn {
  margin-top: 26px;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
}

/* ================= RIGHT CARDS ================= */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px;
  border-radius: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
}

.card p {
  font-size: 15px;
  opacity: 0.9;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.card-red {
  background: #d23b0d;
  color: #fff;
}

.card-yellow {
  background: #ffe680;
}

.card-blue {
  background: #7ecbff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left p {
    font-size: 16px;
  }
}


.mentorship {
  position: relative;
  padding: 80px 24px;
  background: #fff;
  overflow: hidden;
}

/* Background grid */
.bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(#ff6a3d 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.12;
  pointer-events: none;
}

/* Header */
.section-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}

.section-header .label {
  color: #ff6a3d;
  font-weight: 600;
  font-size: 14px;
}

.section-header h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-top: 12px;
}

.section-header h2 span {
  color: #ff6a3d;
}

/* Wrapper */
.slider-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* ❌ Slider disabled */
.slider {
  overflow: visible;
}

/* ✅ Static grid instead of slider */
.track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Cards */
.course-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.course-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

.course-card.green { background: #e8f8ee; }
.course-card.red { background: #fde8e6; }

.badge {
  display: inline-block;
  background: #ff6a3d;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-bottom: 12px;
}

.course-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.course-card img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin: 12px 0;
}

.rating {
  font-size: 14px;
  margin: 6px 0;
}

.rating span {
  color: #555;
}

.mentor {
  color: #ff6a3d;
  font-weight: 600;
  margin-bottom: 6px;
}

.desc {
  font-size: 14px;
  color: #555;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.primary {
  background: #ff6a3d;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.secondary {
  background: #fff;
  border: 1px solid #333;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
}

/* ❌ Hide navigation arrows completely */
.nav-btn {
  display: none;
}

/* Explore */
.explore {
  display: block;
  margin: 48px auto 0;
  background: #ff6a3d;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .track {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}







/* ===== SECTION ===== */
.trending-slider-section {
  position: relative;
  padding: 70px 24px;
  overflow: hidden;
}

.trending-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(#ff6a3d 1.4px, transparent 1.4px);
  background-size: 28px 28px;
  opacity: 0.1;
  pointer-events: none;
}

/* ===== HEADER ===== */
.trending-header {
  max-width: 1200px;
  margin: 0 auto 30px;
}

.trending-header h2 {
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trend-icon {
  color: #4f6cff;
}

/* ===== SLIDER ===== */
.trending-slider-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trending-slider {
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.trending-slider::-webkit-scrollbar {
  display: none;
}

.trending-track {
  display: flex;
  gap: 24px;
}

/* ===== CARD ===== */
.trending-card {
  flex: 0 0 calc(33.333% - 16px);
  min-height: 280px;
  border-radius: 20px;
  padding: 22px;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}

.trending-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,.25);
}

/* Gradients */
.trending-card.purple {
  background: linear-gradient(135deg,#5a2ca0,#3b1b7a);
}
.trending-card.blue {
  background: linear-gradient(135deg,#1b8fd9,#0c5fb8);
}
.trending-card.violet {
  background: linear-gradient(135deg,#7b5bd6,#5b3db2);
}

/* Card content */
.tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-bottom: 12px;
}

.trending-card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.meta {
  font-size: 14px;
  opacity: .9;
}

.time {
  font-size: 14px;
  margin: 10px 0;
}

.cta {
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.cta.green { background: #3ddc97; color: #000; }
.cta.yellow { background: #ffe26a; color: #000; }

.trending-card img {
  position: absolute;
  right: 14px;
  bottom: 0;
  max-height: 170px;
}

/* ===== NAV BUTTONS ===== */
.trending-nav {
  background: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .trending-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .trending-card {
    flex: 0 0 100%;
  }
}




/* ===== SECTION ===== */
.why-choose-section {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}

/* Grid background */
.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(#dbe7f3 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: 0.4;
  pointer-events: none;
}

/* Header */
.why-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.why-header h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

/* Grid */
.why-choose-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.why-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

/* Icon */
.icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  font-size: 22px;
}

.icon.blue { background: #1e3a8a; }
.icon.cyan { background: #06b6d4; }
.icon.green { background: #10b981; }
.icon.orange { background: #f59e0b; }
.icon.coral { background: #fb7185; }
.icon.purple { background: #8b5cf6; }
.icon.orange-dark { background: #f97316; }
.icon.pink { background: #ec4899; }

/* Text */
.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 28px;
  }
}



.lf-section {
  position: relative;
  padding: 80px 24px;
  background: #fff;
  overflow: hidden;
}

/* Background grid */
.lf-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(#d9e2ec 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}

/* Header */
.lf-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.lf-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.lf-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Flow */
.lf-flow {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Steps */
.lf-step {
  width: 200px;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

.lf-step:hover {
  transform: translateY(-8px);
}

/* Icon */
.lf-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  margin: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

/* Badge */
.lf-badge {
  display: inline-block;
  margin: 14px 0 10px;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  font-weight: 600;
  background: rgba(0,0,0,.05);
}

/* Text */
.lf-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Colors */
.blue .lf-icon { background: #78c5e5; }
.green .lf-icon { background: #8ccf8a; }
.yellow .lf-icon { background: #ffd85e; color:#333; }
.orange .lf-icon { background: #ffbd59; }
.pink .lf-icon { background: #f472a0; }
.orange-dark .lf-icon { background: #ff7a3d; }

/* Connectors */
.lf-connector {
  width: 120px;
  height: 60px;
}

.lf-connector path {
  fill: none;
  stroke: #222;
  stroke-width: 2;
  stroke-dasharray: 6 6;
}

/* Tablet */
@media (max-width: 1024px) {
  .lf-flow {
    flex-wrap: wrap;
    gap: 40px;
  }
  .lf-connector {
    display: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .lf-header h2 {
    font-size: 30px;
  }
  .lf-flow {
    flex-direction: column;
  }
}


.tools-section {
  background: #ffffff;
  padding: 80px 20px;
  margin-left:10%;
  overflow: hidden;
}

.tools-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.tools-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tools-header p {
  font-size: 16px;
  color: #555;
}

.marquee {
  width: 80%;
  margin: left 10%;
  overflow: hidden;
  margin: 25px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  animation: scroll 30s linear infinite;
}


.marquee-left .marquee-track {
  animation-direction: reverse;
}

.marquee-track img {
  height: 60px;
  margin: 0 35px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Smooth scrolling */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tools-header h2 {
    font-size: 28px;
  }

  .marquee-track img {
    height: 45px;
    margin: 0 25px;
  }
}

@media (max-width: 480px) {
  .marquee-track img {
    height: 38px;
    margin: 0 18px;
  }
}



#ld-testimonial-section {
  padding: 80px 20px;
  background: #fff;
  overflow: hidden;
}

.ld-testimonial-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.ld-testimonial-header h2 {
  font-size: 38px;
  font-weight: 700;
}

.ld-testimonial-header p {
  margin-top: 10px;
  color: #555;
}

.ld-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.ld-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.ld-slider::-webkit-scrollbar {
  display: none;
}

.ld-card {
  min-width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 22px;
  flex-shrink: 0;
}

.ld-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ld-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.ld-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.ld-google {
  width: 24px;
}

.ld-review {
  margin: 18px 0;
  color: #444;
  line-height: 1.6;
}

.ld-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ld-stars {
  color: #ff9800;
  font-size: 18px;
}

.ld-link {
  color: #111;
  font-weight: 500;
  cursor: pointer;
}

.ld-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.ld-nav-btn.left { left: -10px; }
.ld-nav-btn.right { right: -10px; }

@media (max-width: 768px) {
  .ld-card { min-width: 85%; }
}


#ld-faq-section {
  background: #ffffff;
  padding: 80px 20px;
}

.ld-faq-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.ld-faq-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ld-faq-header p {
  color: #555;
  font-size: 16px;
}

.ld-faq-container {
  max-width: 900px;
  margin: auto;
}

.ld-faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.ld-faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ld-faq-icon {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.ld-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 16px;
  color: #444;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.ld-faq-item.active .ld-faq-answer {
  max-height: 200px;
  padding: 15px 22px 22px;
}

.ld-faq-item.active .ld-faq-icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .ld-faq-header h2 {
    font-size: 28px;
  }
  .ld-faq-question {
    font-size: 16px;
  }
}




#ld-footer{
  background: radial-gradient(1200px 400px at 20% 0%, #2a0f0a, #120706 70%);
  color:#ddd;
  padding:70px 20px;
}

.ld-footer-wrap{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  gap:40px;
}

.ld-footer-col h4{
  color:#fff;
  font-size:20px;
  margin-bottom:18px;
}

.ld-footer-col ul{
  list-style:none;
  padding:0;
}

.ld-footer-col li{
  margin:10px 0;
  font-size:15px;
  color:#bbb;
}

.ld-newsletter h4{margin-bottom:14px;}

.ld-subscribe{
  display:flex;
  gap:12px;
  margin-bottom:16px;
}

.ld-subscribe input{
  flex:1;
  padding:14px 16px;
  border-radius:999px;
  border:none;
  outline:none;
}

.ld-subscribe button{
  padding:14px 22px;
  border-radius:999px;
  border:none;
  background:#777;
  color:#fff;
  cursor:pointer;
}

.ld-note{
  font-size:14px;
  color:#aaa;
  margin-bottom:16px;
}

.ld-address p{
  font-size:14px;
  color:#aaa;
  line-height:1.6;
}

.ld-social{
  margin:18px 0;
}

.ld-icons{
  display:flex;
  gap:12px;
  margin-top:8px;
}

.ld-icons a{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#555;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

.ld-contact div{
  margin-top:10px;
  font-size:14px;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .ld-footer-wrap{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 600px){
  .ld-footer-wrap{
    grid-template-columns:1fr;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  color: #bbb;              /* same muted look */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;           /* hover highlight */
}

ul li a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

ul li a:hover {
  text-decoration: underline; /* optional */
}
