body {
  font-family: Inter, sans-serif;
  background: #eef1ea;
  color: #0e2230;
  overflow-x: hidden;
}

/* Navbar */

.ln-navbar {
  height: auto;
  left: 50%;
  position: fixed;
  top: 0;
  transform: translate(-50%);
  width: 100%;
  z-index: 10;
  background: linear-gradient(
      rgb(255, 255, 255) -31%,
      rgba(255, 255, 255, 0) 100%
    )
    rgba(0, 0, 0, 0);
  backdrop-filter: blur(1px);
}

.logo {
  height: 32px;
}

.navbar-brand span {
  font-weight: 600;
  font-size: 20px;
}

/* Desktop Navigation */

.desktop-nav {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: #0e2230;
  font-weight: 500;
}

/* Contact Button */

.btn-contact {
  background: #0e2230;
  color: white !important;
  padding: 10px 18px;
  border-radius: 25px;
  display: inline-block;
}

/* Hamburger */

.menu-toggle {
  display: none;
  width: 32px;
  height: 24px;
  border: none;
  background: none;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  height: 3px;
  background: #0e2230;
  display: block;
  border-radius: 2px;
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: white;
  padding: 40px;
  transition: 0.4s;
  z-index: 999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
}

.mobile-menu.active {
  right: 0;
}

.menu-close {
  border: none;
  background: none;
  font-size: 28px;
  margin-bottom: 30px;
}

.mobile-nav {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  margin-bottom: 20px;
}

.mobile-nav a {
  text-decoration: none;
  color: #0e2230;
  font-size: 18px;
  font-weight: 500;
}

/* Responsive */

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Hero Section */

.hero-section {
  padding: 80px 0 120px 0;
  position: relative;
  background: url(https://framerusercontent.com/images/IC5rm3C0NHcWWHaxYHJ0lv5oM.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
}

.hero-content p {
  font-size: 18px;
  color: #5c6a73;
  max-width: 520px;
}

.hero-badge {
  display: inline-block;
  background: #c7e5a3;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 18px;
}

.divider {
  position: absolute;
  height: 96px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(246 247 244) 100%);
  bottom: 0px;
  left: 0;
  right: 0;
}

.btn-primary-custom {
  background: #0e2230;
  color: white;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-outline-custom {
  border: 1px solid #d4d8d1;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  color: #0e2230;
}

.about-lnacademy {
  padding: 120px 0;
  background: #f5f7f3;
  position: relative;
}

/* Image Layout */

.about-images {
  position: relative;
  height: 520px;
}

.about-images img {
  border-radius: 24px;
  position: absolute;
  object-fit: cover;
}

/* Image Positions */

.img-1 {
  width: 240px;
  left: 0;
  top: 80px;
}

.img-2 {
  width: 220px;
  left: 260px;
  top: 0;
}

.img-3 {
  width: 240px;
  left: 40px;
  top: 300px;
}

/* Floating Shapes */

.shape-orange {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  left: 0px;
  animation: floatX 4s ease-in-out infinite;
}

.shape-blue {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  bottom: -500px;
  left: 28px;
  animation: floatX 5s ease-in-out infinite;
}

/* Oscillation */

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

  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Content */

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  color: #5c6a73;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Stats */

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 16px;
  color: #5c6a73;
  margin: 0;
}

.stat-green {
  color: #7bb13c;
}

.stat-blue {
  color: #1ea3d8;
}

.stat-orange {
  color: #f35a2a;
}

@media (max-width: 991px){
	section#about .col-lg-6.about-content{
		margin-top:50px;
	}
}

.values-section {
  padding: 120px 0;
  background: #f5f7f3;
}

.values-header {
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.values-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}

.values-header p {
  font-size: 18px;
  color: #5c6a73;
}

/* Card */

.value-card {
  position: relative;
  background: white;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e5e8e3;
  transition: 0.3s;
}

.value-card .content {
  height: 165px;
  padding: 30px;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 16px;
  color: #5c6a73;
  max-width: 220px;
}

/* Decorative background image */

.value-bg {
  width: 100%;
  pointer-events: none;
}

.why-lnacademy {
  padding: 120px 0;
  background: #f5f7f3;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 70px auto;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: #5c6a73;
  font-size: 18px;
}

/* Image */

.why-images {
  position: relative;
  height: 420px;
}

.why-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  opacity: 0;
  transition: 0.6s;
}

.why-img.active {
  opacity: 1;
}

/* Tabs */

.why-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-tab {
  background: white;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #e5e8e3;
  position: relative;
  transition: 0.3s;
}

.why-tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  height: 59%;
  width: 4px;
  background: #e0e0e0;
  border-radius: 4px;
}

.why-tab.active::before {
  background: #f35a2a;
  height: 80%;
}

.why-tab h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-tab p {
  font-size: 16px;
  color: #5c6a73;
  margin-bottom: 14px;
}

.why-tab:not(.active) p,
.why-tab:not(.active) a {
  display: none;
}

.why-mobile{
display:none;
}

.why-mobile-item{
margin-bottom:40px;
}

.why-mobile-item img{
width:100%;
border-radius:20px;
margin-bottom:20px;
}

.why-mobile-item h4{
font-size:22px;
margin-bottom:10px;
}

.why-mobile-item p{
color:#5c6a73;
}

/* responsive */

@media(max-width:991px){

.why-desktop{
display:none;
}

.why-mobile{
display:block;
}

}
/* Courses */

.courses-section {
  padding: 120px 0;
  background: #f5f7f3;
}

.courses-header {
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.courses-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.courses-header p {
  font-size: 18px;
  color: #5c6a73;
}

.course-card {
  background: white;
  border-radius: 20px;
  padding: 34px;
  height: 100%;
  border: 1px solid #e5e8e3;
  transition: 0.3s;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.course-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 18px 0 12px 0;
}

.course-card p {
  font-size: 16px;
  color: #5c6a73;
  margin-bottom: 18px;
}

.course-card a {
  text-decoration: none;
  color: #0e2230;
  font-weight: 500;
}

.course-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #ffe9f6;
    padding: 8px;
}

.workflow-section {
  padding: 120px 0;
  background: #f5f7f3;
}

.workflow-header {
  max-width: 720px;
  margin: 0 auto 100px auto;
}

.workflow-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.workflow-header p {
  font-size: 18px;
  color: #5c6a73;
}

/* timeline */

.workflow {
  position: relative;
}

.timeline {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 4px;
  transform: translateX(-50%);
}

.timeline-base {
  position: absolute;
  width: 4px;
  height: 100%;
  background: #d9e0dc;
  border-radius: 3px;
}

/* mask container */

.timeline-mask {
  position: absolute;
  width: 4px;
  height: 100%;
  overflow: hidden;
}

/* moving color */

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #1ea3d8;
  border-radius: 999px;
}

/* steps */

.workflow-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(80px);
  transition: 0.6s;
}

.workflow-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* number */

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  z-index: 2;
  font-size: 20px;
}

.blue {
  background: #1ea3d8;
}
.orange {
  background: #f35a2a;
}
.green {
  background: #7bb13c;
}
.purple {
  background: #7c5bd6;
}

/* content */

.step-content {
  background: white;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid #e5e8e3;
  max-width: 420px;
}

.step-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 16px;
  color: #5c6a73;
}

/* layout */

.step-right {
  justify-content: flex-end;
}

.step-left {
  justify-content: flex-start;
}

/* floating shapes */

.floating-shapes {
  position: absolute;
  top: -40px;
}

.shapes-left {
  left: -120px;
}

.shapes-right {
  right: -120px;
}

.shape {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  position: absolute;
  animation: floatMove 5s infinite ease-in-out;
}

.t39{
    transform: rotate(-39deg);
    position: relative;
    width: 40px;
    height: 40px;
}

.t125{
    transform: rotate(125deg);
    position: relative;
    width: 40px;
    height: 40px;
}

.shape-yellow {
  background: #ffd400;
}
.shape-orange2 {
  background: #ff6a2e;
}
.shape-purple {
  background: #7c5bd6;
}
.shape-red {
  background: #ff2c2c;
}

@keyframes floatMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* mobile */

@media (max-width: 991px) {
  .timeline {
    left: 20px;
    transform: none;
  }

  .workflow-step {
    flex-direction: row;
    padding-left: 60px;
    margin-bottom: 70px;
  }

  .step-number {
    left: -8px;
    transform: none;
  }

  .step-content {
    max-width: 100%;
  }

  .floating-shapes {
    display: none;
  }

  .step-left,
  .step-right {
    justify-content: flex-start;
  }
}

/* FAQ */
.faq-section {
  padding: 120px 0;
  background: #f5f7f3;
  position: relative;
}

.faq-header {
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.faq-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 18px;
  color: #5c6a73;
}

.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

/* FAQ Item */

.faq-item {
  background: white;
  border: 1px solid #e5e8e3;
  border-radius: 16px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.faq-icon {
  font-size: 22px;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-answer p {
  margin: 0;
  color: #5c6a73;
  line-height: 1.6;
}

/* Active */

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 26px 22px 26px;
}

.faq-item.active .faq-icon {
  content: '−';
}

/* Contact */
.contact-section {
  padding: 120px 0;
  background: url('https://framerusercontent.com/images/Xs0EofubUYcT0FxAMd3Q09ObXHQ.png');
  background-size: cover;
  background-position: center;
}

.contact-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.contact-left {
  padding: 60px;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.8);
}

.contact-left h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-left p {
  opacity: 0.9;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  padding:10px;
  background: #eed4e8;
}

.info-icon.phone {
    background: #ffe5f5;
    color: #ec018c;
}

.info-icon.email {
    background: #feede7;
    color: #f15928;
}

.info-icon.location {
    background: #e5f7fe;
    color: #01aeee;
}

.info-item strong {
  display: block;
  font-size: 16px;
}

.info-item span {
  font-size: 13px;
  opacity: 0.8;
}

/* form */

.contact-right {
  background: white;
  padding: 60px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #e5e8e3;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}

.submit-btn {
  width: 100%;
  background: #0e2230;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #132f41;
}

.form-message {
  margin-top: 15px;
  font-size: 14px;
}

/* Footer */
.site-footer {
  background: #0e2230;
  color: #ffffff;
  padding: 20px 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
}

.site-footer a:hover {
  opacity: 1;
}

/* Course Modal */

.course-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
display:none;
z-index:999;
font-family:inherit;
align-items:center;
justify-content:center;
}

.course-modal.active{
display:flex;
}

.course-modal-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(3px);
}

.course-modal-content{
position:relative;
max-width:560px;
width:90%;
max-height:80vh;
margin:0 auto;
background:#ffffff;
border-radius:16px;
padding:42px 40px;
z-index:2;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
animation:modalFade 0.3s ease;
overflow-y:auto;
}

.course-modal-close{
position:absolute;
top:16px;
right:18px;
border:none;
background:none;
font-size:26px;
line-height:1;
cursor:pointer;
color:#666;
transition:color 0.2s ease;
}

.course-modal-close:hover{
color:#000;
}

#modalTitle{
font-size:22px;
font-weight:600;
margin-bottom:12px;
color:#111;
}

#modalDescription{
font-size:15px;
line-height:1.6;
color:#555;
margin-bottom:20px;
}

.course-meta{
display:flex;
gap:16px;
font-size:13px;
margin-bottom:24px;
}

.course-meta span{
background:#f4f6f8;
padding:6px 10px;
border-radius:6px;
font-weight:500;
color:#444;
}

.course-modal-content h4{
font-size:14px;
font-weight:600;
margin-bottom:10px;
margin-top:18px;
color:#222;
}

#modalDetails,
#modalProjects{
padding-left:18px;
margin:0;
}

#modalDetails li,
#modalProjects li{
font-size:14px;
line-height:1.6;
color:#444;
margin-bottom:6px;
}

@keyframes modalFade{
from{
transform:translateY(20px);
opacity:0;
}
to{
transform:translateY(0);
opacity:1;
}
}

@media (max-width:991px){
	.about-lnacademy,
	.values-section,
	.why-lnacademy,
	.courses-section,
	.workflow-section,
	.faq-section,
	.contact-section{
		padding:50px 0;
	}
}