/* =========================================================
   INEC TEI LMS - Modern Landing Page CSS
   File: custom-landing.css
========================================================= */

:root {
  --inec-green: #007a3d;
  --inec-green-dark: #004f2d;
  --inec-green-soft: #eaf7ef;
  --inec-text: #101828;
  --inec-muted: #667085;
  --inec-border: #d9eadf;
  --inec-white: #ffffff;
  --inec-bg: #f7fbf8;
}

/* =========================================================
   Global Cleanups
========================================================= */

body {
  background: #ffffff;
}

a {
  text-decoration: none !important;
}

.banner-area-one {
  display: none !important;
}

/* =========================================================
   Header
========================================================= */

.header-one {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 122, 61, 0.08);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
}

.header-top-one-wrapper {
  height: 32px !important;
  background: var(--inec-green) !important;
}

.header-top-one {
  min-height: 32px !important;
  display: flex;
  align-items: center;
}

.header-top-one .email {
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
}

.header-one-wrapper {
  min-height: 82px !important;
  display: flex;
  align-items: center !important;
}

.header-one .logo-area {
  display: flex !important;
  align-items: center !important;
  gap: 14px;
}

.header-one .logo-area img {
  width: 247px !important;
  max-width: 247px !important;
  height: 46px !important;
  object-fit: contain !important;
}

.header-one .brand-text {
  display: none;
}

.main-nav-one nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav-one nav ul li {
  margin: 0 !important;
}

.main-nav-one nav ul li a.nav-link {
  position: relative;
  color: var(--inec-text) !important;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0 !important;
}

.main-nav-one nav ul li a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--inec-green);
  transition: 0.25s ease;
}

.main-nav-one nav ul li a.nav-link:hover {
  color: var(--inec-green) !important;
}

.main-nav-one nav ul li a.nav-link:hover::after {
  width: 100%;
}

.header-right-area-one {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-right-area-one .actions-area {
  display: flex;
  align-items: center;
  padding-right: 18px;
  border-right: 1px solid rgba(0, 122, 61, 0.18);
}

.header-right-area-one .search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f6fbf8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-right-area-one .search-btn:hover {
  background: var(--inec-green-soft);
}

.header-right-area-one .buttons-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-right-area-one .rts-btn {
  min-height: 46px;
  border-radius: 14px !important;
  padding: 0 24px !important;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-right-area-one .btn-border {
  background: #ffffff !important;
  color: var(--inec-green) !important;
  border: 1px solid rgba(0, 122, 61, 0.24) !important;
}

.header-right-area-one .btn-primary {
  background: var(--inec-green) !important;
  color: #ffffff !important;
  border: 1px solid var(--inec-green) !important;
  box-shadow: 0 12px 24px rgba(0, 122, 61, 0.22);
}

.header-one-wrapper > .main-nav-one:empty {
  display: none;
}

/* =========================================================
   Hero Section
========================================================= */

.modern-hero {
  padding: 40px 0 70px;
  background:
    radial-gradient(circle at 85% 35%, rgba(0, 122, 61, 0.08), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f8fcfa 50%, #eef8f1 100%);
  overflow: hidden;
}

.modern-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.modern-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--inec-green-soft);
  color: var(--inec-green);
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 35px;
  border: 1px solid rgba(0, 122, 61, 0.13);
}

.modern-hero-content h1 {
  font-size: clamp(52px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  color: var(--inec-text);
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.modern-hero-content h1 span {
  color: var(--inec-green);
}

.modern-hero-content p {
  font-size: 22px;
  line-height: 1.7;
  color: var(--inec-muted);
  max-width: 680px;
  margin-bottom: 35px;
}

.modern-hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.modern-btn-primary,
.modern-btn-light {
  height: 62px;
  padding: 0 34px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.25s ease;
}

.modern-btn-primary {
  background: var(--inec-green);
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(0, 122, 61, 0.22);
}

.modern-btn-primary:hover {
  background: var(--inec-green-dark);
  color: #ffffff;
  transform: translateY(-3px);
}

.modern-btn-light {
  background: #ffffff;
  color: var(--inec-green);
  border: 1px solid var(--inec-border);
}

.modern-btn-light:hover {
  background: var(--inec-green-soft);
  color: var(--inec-green-dark);
}

/* =========================================================
   Hero Visual
========================================================= */

.modern-hero-visual {
  position: relative;
  min-height: 620px;
  background:
    radial-gradient(circle at center, #eef8f1 0%, #f8fffb 72%);
  border-radius: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.hero-svg-placeholder {
  width: 92%;
  height: 500px;
  border: 2px dashed #b7d7c4;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  padding: 12px;
  position: relative;
}

.hero-svg-placeholder img {
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
  transform: scale(1.08);
}

.floating-stat {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  color: var(--inec-text);
  font-weight: 800;
  text-align: center;
  border: 1px solid rgba(0, 122, 61, 0.08);
  z-index: 3;
}

.floating-stat i {
  font-size: 22px;
  color: var(--inec-green);
}

.floating-stat span {
  font-size: 14px;
  line-height: 1.3;
}

.stat-one {
  top: 85px;
  left: 40px;
}

.stat-two {
  top: 75px;
  right: 40px;
}

.stat-three {
  bottom: 75px;
  left: 15px;
}

/* =========================================================
   Feature Strip
========================================================= */

.modern-feature-strip {
  margin-top: 65px;
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  box-shadow: 0 25px 60px rgba(16, 24, 40, 0.07);
  border: 1px solid rgba(0, 122, 61, 0.07);
}

.modern-feature-strip div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  align-items: center;
}

.modern-feature-strip i {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--inec-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--inec-green);
  font-size: 24px;
}

.modern-feature-strip strong {
  color: var(--inec-green);
  font-size: 16px;
  font-weight: 800;
}

.modern-feature-strip span {
  color: var(--inec-muted);
  font-size: 14px;
}

/* =========================================================
   Study Pathways
========================================================= */

.category-area-style-one {
  padding: 70px 0 60px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%) !important;
}

.category-area-style-one .title-area-center-style {
  max-width: 820px;
  margin: 0 auto 35px !important;
}

.category-area-style-one .pre-title {
  margin-bottom: 14px !important;
}

.category-area-style-one .title-area-center-style .title {
  font-size: 38px !important;
  line-height: 1.15 !important;
  max-width: 760px;
  margin: 0 auto 14px !important;
  color: var(--inec-text) !important;
}

.category-area-style-one .post-title {
  max-width: 640px;
  font-size: 17px !important;
  line-height: 1.6 !important;
  margin: 0 auto !important;
  color: var(--inec-muted) !important;
}

.category-area-style-one .row.g-5.mt--30 {
  margin-top: 20px !important;
  row-gap: 22px !important;
}

.single-category-2 {
  min-height: 130px;
  padding: 22px 24px !important;
  border-radius: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px;
  border: 1px solid rgba(0, 122, 61, 0.08) !important;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.05) !important;
}

.single-category-2 .icon {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px;
  border-radius: 16px !important;
  background: var(--inec-green-soft) !important;
}

.single-category-2 .information .title {
  font-size: 19px !important;
  margin-bottom: 5px !important;
  color: var(--inec-text) !important;
}

.single-category-2 .information p {
  font-size: 15px !important;
  margin-bottom: 0 !important;
  color: var(--inec-muted) !important;
}

.category-area-style-one .shape-image {
  opacity: 0.12;
  pointer-events: none;
}

/* =========================================================
   Featured Courses
========================================================= */

.course-area-start {
  padding: 85px 0 !important;
  background: #ffffff !important;
}

.title-between-area {
  align-items: flex-end !important;
  margin-bottom: 35px;
}

.title-area-left-style .title {
  font-size: 44px !important;
  line-height: 1.15 !important;
  color: var(--inec-text) !important;
}

.title-area-left-style .post-title {
  font-size: 18px !important;
  max-width: 600px;
  color: var(--inec-muted) !important;
}

.button-group.filters-button-group .button {
  border-radius: 12px !important;
  padding: 13px 20px !important;
  background: #f6fbf8 !important;
  color: var(--inec-green) !important;
  border: 1px solid rgba(0, 122, 61, 0.16) !important;
  font-weight: 700;
}

.button-group.filters-button-group .button.is-checked,
.button-group.filters-button-group .button:hover {
  background: var(--inec-green) !important;
  color: #ffffff !important;
}

.rts-single-course {
  border-radius: 24px !important;
  border: 1px solid #e8eee9 !important;
  box-shadow: 0 16px 42px rgba(16, 24, 40, 0.08) !important;
  overflow: hidden;
}

.rts-single-course .thumbnail img {
  height: 220px !important;
  object-fit: cover !important;
}

.rts-single-course .title {
  font-size: 20px !important;
  line-height: 1.35 !important;
  color: var(--inec-text) !important;
}

.lesson-studente {
  background: #f8fbf9;
  border-radius: 14px;
  padding: 10px 12px;
}

/* =========================================================
   Why Choose / About Section
========================================================= */

.why-choose-us {
  padding: 95px 0 !important;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #064326 0%, #007a3d 100%) !important;
  overflow: hidden;
}

.why-choose-us .title-area-left-style .title {
  font-size: 48px !important;
  line-height: 1.12 !important;
  letter-spacing: -1.6px;
  color: #ffffff !important;
}

.why-choose-us .title-area-left-style p,
.why-choose-us .disc {
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
  max-width: 680px;
}

.why-choose-us .pre-title {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  margin-bottom: 22px;
}

.why-choose-us-area-image img.one {
  width: 310px !important;
  height: 430px !important;
  object-fit: cover;
  border-radius: 28px !important;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
}

.why-choose-us-area-image .border-img {
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: 18px;
  padding: 18px;
  display: inline-block;
  margin-left: -20px;
}

.why-choose-us-area-image img.two {
  width: 560px !important;
  height: 360px !important;
  object-fit: cover;
  border-radius: 24px !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.why-choose-us .pl--90 {
  padding-left: 55px !important;
}

.why-choose-us .single-choose-reason-1 {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 215, 0, 0.35) !important;
  border-radius: 16px !important;
  padding: 18px 20px !important;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.why-choose-us .single-choose-reason-1:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14) !important;
}

.why-choose-us .single-choose-reason-1 .title {
  color: #ffffff !important;
  font-size: 17px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}

.why-choose-us .rts-btn,
.why-choose-us a.rts-btn {
  background: #ffffff !important;
  color: #064326 !important;
  border-radius: 14px !important;
  padding: 16px 30px !important;
  font-weight: 800 !important;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.why-choose-us .rts-btn:hover,
.why-choose-us a.rts-btn:hover {
  background: #ffd84d !important;
  color: #064326 !important;
  transform: translateY(-3px);
}

.circle-animation {
  transform: scale(0.85);
}

/* =========================================================
   Footer
========================================================= */

.footer-callto-action-area {
  background: #f7fbf8 !important;
}

.copyright-area-one-border {
  border-top: 1px solid rgba(0, 122, 61, 0.1) !important;
}

/* =========================================================
   Responsive
========================================================= */

@media only screen and (max-width: 991px) {
  .main-nav-one {
    display: none;
  }

  .header-one-wrapper {
    min-height: 70px !important;
  }

  .header-one .logo-area img {
    width: 200px !important;
  }

  .header-right-area-one .buttons-area {
    display: none;
  }

  .header-right-area-one .actions-area {
    border-right: none;
    padding-right: 0;
  }

  .modern-hero {
    padding: 60px 0;
  }

  .modern-hero-grid,
  .modern-feature-strip {
    grid-template-columns: 1fr;
  }

  .modern-hero-content {
    text-align: center;
  }

  .modern-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .modern-hero-actions {
    justify-content: center;
  }

  .modern-hero-content h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }

  .modern-hero-visual {
    min-height: 500px;
    border-radius: 36px;
  }

  .hero-svg-placeholder {
    width: 94%;
    height: 360px;
  }

  .hero-svg-placeholder img {
    max-width: 100%;
    transform: scale(1.02);
  }

  .floating-stat {
    width: 84px;
    height: 84px;
    border-radius: 18px;
  }

  .floating-stat span {
    font-size: 12px;
  }

  .modern-feature-strip {
    margin-top: 40px;
  }

  .why-choose-us {
    padding: 70px 0 !important;
  }

  .why-choose-us .pl--90 {
    padding-left: 15px !important;
  }

  .why-choose-us-area-image {
    margin-bottom: 40px;
  }

  .why-choose-us-area-image img.one,
  .why-choose-us-area-image img.two {
    width: 100% !important;
    height: auto !important;
  }

  .why-choose-us-area-image .border-img {
    margin-left: 0;
    margin-top: 20px;
  }

  .why-choose-us .title-area-left-style .title {
    font-size: 38px !important;
  }
}

@media only screen and (max-width: 767px) {
  .category-area-style-one {
    padding: 45px 0 40px !important;
  }

  .category-area-style-one .title-area-center-style .title,
  .title-area-left-style .title {
    font-size: 30px !important;
  }

  .modern-feature-strip {
    padding: 26px;
  }

  .modern-feature-strip div {
    grid-template-columns: 50px 1fr;
  }

  .modern-feature-strip i {
    width: 50px;
    height: 50px;
  }

  .single-category-2 {
    min-height: auto;
  }
}

@media only screen and (max-width: 575px) {
  .header-top-one-wrapper {
    display: none;
  }

  .header-one .logo-area img {
    width: 175px !important;
  }

  .header-one-wrapper {
    min-height: 66px !important;
  }

  .modern-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.8px;
  }

  .modern-hero-content p {
    font-size: 17px;
  }

  .modern-hero-actions a {
    width: 100%;
  }

  .modern-hero-visual {
    min-height: 360px;
  }

  .hero-svg-placeholder {
    height: 250px;
    width: 96%;
    border-radius: 22px;
  }

  .hero-svg-placeholder img {
    transform: scale(1);
  }

  .floating-stat {
    display: none;
  }
}
