/*
Author       : theme_ocean
Template Name: Eduleb - Education HTML Template
Version      : 1.0
*/
/*=============================================================
    CSS INDEX (HOME PAGE ONLY)
    =============================
    01. GENERAL STYLE (body, link color, section-title, preloader btn, overlay, section-padding etc)
    02. START NAVIGATION
    03. START HOME DESIGN
    04. START COURSES DESIGN
    05. START NIHONGO DESIGN (Why Choose Section)
    06. START JLPT DESIGN
    07. START SENSEI DESIGN (Teachers Section)
    08. START FOOTER DESIGN
  =============================================================*/
/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
body {
  color: #4a5355;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  background: #fff;
  overflow-x: hidden;
}

html,
body {
  height: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0px;
  margin: 0px;
  font-family: "Jost", sans-serif;
  color: #0b104a;
  font-weight: 400;
}

a {
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #0b104a;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

p {
  margin-bottom: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: #525fe1;
  color: #ffffff;
}

::selection {
  background: #525fe1;
  color: #ffffff;
}

fieldset {
  border: 0 none;
  margin: 0 auto;
  padding: 0;
}

/*START PRELOADER DESIGN*/
.preloaders {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transform: translate(-50%, -50%);
  background: #525fe1;
}

.loader {
  width: 106px;
  height: 56px;
  display: block;
  margin: 30px auto;
  background-image: linear-gradient(#FFF 50px, transparent 0), linear-gradient(#FFF 50px, transparent 0), linear-gradient(#FFF 50px, transparent 0), linear-gradient(#FFF 50px, transparent 0), radial-gradient(circle 14px, #FFF 100%, transparent 0);
  background-size: 48px 15px, 15px 35px, 15px 35px, 25px 15px, 28px 28px;
  background-position: 25px 5px, 58px 20px, 25px 17px, 2px 37px, 76px 0px;
  background-repeat: no-repeat;
  position: relative;
  transform: rotate(-45deg);
  box-sizing: border-box;
}

.loader::after,
.loader::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border: 6px solid #f26b65;
  border-radius: 50%;
  left: -45px;
  top: -10px;
  background-repeat: no-repeat;
  background-image: linear-gradient(#FFF 64px, transparent 0), linear-gradient(#FFF 66px, transparent 0), radial-gradient(circle 4px, #FFF 100%, transparent 0);
  background-size: 40px 1px, 1px 40px, 8px 8px;
  background-position: center center;
  box-sizing: border-box;
  animation: rotation 0.3s linear infinite;
}

.loader::before {
  left: 25px;
  top: 60px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

ul {
  /* list-style: none; */
}

/*END PRELOADER DESIGN*/
.no-padding {
  padding: 0
}

/*END PRELOADER DESIGN*/
.section-padding {
  padding: 80px 0;
}

/*START SECTION TITLE DESIGN*/
.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 0;
  position: relative;
  line-height: 50px;
}

.section-title p {
  width: 60%;
  margin: auto;
  margin-top: 20px;
}

.section-title b {
  color: #525fe1;
  font-weight: 600;
}

@media only screen and (max-width:768px) {
  .section-title p {
    padding-right: 0px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width:480px) {
  .section-title h2 {
    font-size: 35px;
  }
}

/*END SECTION TITLE DESIGN*/
/*START SCROLL TO TOP*/
.topcontrol {
  background: none;
  border-radius: 30px;
  bottom: 5px;
  border: 2px solid #541cae;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
  color: #541cae;
  cursor: pointer;
  font-size: 22px;
  height: 50px;
  line-height: 47px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  position: fixed;
  right: 5px;
  text-align: center;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  width: 50px;
}

.topcontrol:hover {
  background: #541cae;
  border: 2px solid #541cae;
  color: #000;
}

/*END SCROLL TO TOP*/
/*START BTN*/
.btn_one {
  background: #541cae;
  border: 1px solid #541cae;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  transition: 0.3s;
  font-weight: 600;
}

.btn_one i {
  margin-right: 5px;
}

.btn_one:hover {
  background: #ee5096;
  color: #fff;
  border: 1px solid #ee5096;
}

@media only screen and (max-width:960px) {
  .btn_one {
    padding: 14px 25px;
    margin-top: 0px;
  }

  .btn_one i {
    margin-right: 5px;
    display: none;
  }
}

.btn_two {}

.btn_two:hover {}

/*END BTN*/
/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 02.START NAVIGATION
* ----------------------------------------------------------------------------------------
*/
.col-20 {
  width: 20%;
}

.col-60 {
  width: 60%;
}

.col-20 {
  width: 20%;
}

.site-logo {
  width: 150px;
}

.site-logo a {
  display: block;
}

.site-logo img {
  max-width: 100%;
}

#navigation {
  padding: 20px 65px;
  border-bottom: 1px solid #ddd;
}

.navigation2 {
  border-bottom: 0px !important;
  background: #fff;
}

@media only screen and (max-width:960px) {
  #navigation {
    border-bottom: 0px;
  }
}

.navbar-fixed {
  z-index: 999;
  position: fixed;
  opacity: .98;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=98)";
  width: 100%;
  top: 0;
  -webkit-animation: fadeInDown 800ms;
  animation: fadeInDown 800ms;
  -webkit-backface-visibility: hidden;
  border-radius: 0px;
  background: #fff;
  box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.03);
}

@media only screen and (max-width:960px) {
  #navigation.navbar-fixed {
    display: none;
  }
}

#main-menu {}

#main-menu ul {
  list-style-type: none;
}

#main-menu ul li {
  display: inline-block;
  padding: 0 15px;
  position: relative;
  line-height: 60px;
}

@media only screen and (max-width:1024px) {
  #main-menu ul li {
    padding: 0 6px;
  }
}

#main-menu ul li a {
  position: relative;
  text-transform: uppercase;
  color: #0b104a;
  font-weight: 600;
  transition: .5s;
  font-size: 16px;
}

#main-menu ul li a:hover,
#main-menu ul li a:focus {
  color: #525fe1;
}

#navigation .header-btn {
  padding-right: 20px;
}


.whatsapp-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  /* background-color: #67c15e; */
  border-radius: 50%;
  margin-right: 10px;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  /* background-color: #67c15e; */
}

/*-------------------------------
# Dropdwon menu 
--------------------------------*/

#navigation #main-menu ul li ul,
#navigation #main-menu ul li ul li ul {
  background: #525fe1;
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, .05);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, .05);
  left: -55px;
  list-style: outside none none;
  margin: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  padding: 10px;
  position: absolute;
  text-align: left;
  top: 120%;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  width: 210px;
  z-index: 999;
  border-radius: 4px;
  border-top: 2px solid #525fe1;
}

#navigation #main-menu .menu-item-has-children {
  position: relative;
  margin-right: 20px;
}

#navigation #main-menu .menu-item-has-children::after {
  position: absolute;
  content: "\e64b";
  font-family: themify;
  margin-top: 0px;
  margin-left: 0;
  font-size: 10px;
  right: -10px;
  top: 0px;
  color: #0b104a;
  font-size: 13px;
  font-weight: 600;
}

#navigation #main-menu ul li ul li {
  position: relative;
}

#navigation #main-menu ul li ul li ul {
  top: 0;
  right: auto;
  left: 205px;
}

#navigation.navbar-fixed #main-menu ul li li a {
  color: #fff;
}

#navigation #main-menu ul li:hover ul,
#navigation #main-menu ul li ul li:hover>ul {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  top: 100%;
}

#navigation #main-menu ul li ul li {
  display: block;
  margin: 0;
  padding: 0;
}

#navigation #main-menu ul li ul li a {
  color: #fff;
  display: block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  padding: 5px 12px;
  position: relative;
  transition: all 0.3s ease 0s !important;
  visibility: inherit !important;
  opacity: inherit !important;
  text-transform: capitalize;
}

#navigation #main-menu ul li ul li a:hover {
  color: #fff;
  background-color: #525fe1;
  text-decoration: none;
}

@media only screen and (max-width: 991px) {

  .col-60 {
    display: none !important;
  }

  #sm_menu_ham {
    display: block;
    top: 40px;
    right: 11%;
    position: absolute;
  }

  .sidebar {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .spt-130 {
    padding-top: 90px;
  }

  #mobile_menu {
    display: block;
    width: 100%;

  }
}

@media only screen and (max-width: 575px) {
  #navigation {
    padding: 30px 20px;
  }

  #sm_menu_ham {
    top: 40px;
  }
}

.header-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  color: #0b104a;
  transition: .5s;
}

.header-btn:hover,
.header-btn:focus {
  color: #525fe1;

}

.img-fluid {
  max-width: 60% !important;
  height: auto;
}

/*
* ----------------------------------------------------------------------------------------
* 02.END NAVIGATION
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 03.START HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.home_bg {

  position: relative;
  width: 100%;
}

.hb_height {
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width:960px) {
  .home_bg {
    height: auto;
  }

  .hb_height {
    min-height: 650px;
  }
}

@media only screen and (max-width:480px) {
  .home_bg {
    height: auto;
  }

  .hb_height {
    min-height: 800px;
  }
}

.hero-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 68px;
}

.hero-text h1 span {
  color: #541cae;
  font-size: 91px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 74px;
}

.hero-text h1 {
  color: #0b104a;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 84px;
  padding-top: 30px;
  /* margin-bottom: 20px; */
}

@media only screen and (max-width:960px) {
  .hero-text h1 {
    padding-top: 150px;
    font-size: 64px;
    line-height: 74px;
  }
}

@media only screen and (max-width:768px) {
  .hero-text h1 {
    padding-top: 150px;
    font-size: 64px;
    line-height: 74px;
  }

  .hero-text h1 span {
    color: #541cae;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 28px;
  }

  .hero-text p {
    width: 100%;
  }
}

@media only screen and (max-width:480px) {
  .hero-text h1 {
    padding-top: 150px;
    font-size: 34px;
    line-height: 44px;
  }
}

.hero-text p {
  width: 60%;
  font-weight: 500;
  /* margin-bottom: 30px; */
}

/*SUBSCRIBE FIELD*/
.banner_subs {
  display: block;
  position: relative;
  margin-top: 30px;
}

@media only screen and (max-width:480px) {
  .banner_subs {
    display: none;
  }
}

.banner_subs button {
  border: none;
}

.home_si {
  background: #fff;
  border-radius: 0px;
  color: #0b104a;
  display: block;
  height: 70px;
  letter-spacing: 1px;
  margin: 0;
  padding: 0 60px 0 20px;
  text-transform: capitalize;
  width: 100%;
}

.home_si:focus {
  outline: 0 none;
  box-shadow: none;
  border: 1px solid #525fe1 !important;
}

.home_sb button {
  background-color: #525fe1;
  border-radius: 0px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 20px;
  height: 60px;
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 0 20px;
  width: 25%;
  transition: 0.3s;
}

.home_sb button:hover {
  color: #fff;
  background: #f26b65;
}

/*END SUBSCRIBE FIELD*/
.hero-text-img {
  position: absolute;
  bottom: 0;
  right: 5%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: auto;
  height: auto;
}

.hero-text-img .home_ps {
  position: absolute;
}

.hero-text-img img {
  position: relative;
  max-width: 100%;
  height: auto;
  display: block;
  top: 0px;
}

@media only screen and (max-width:960px) {
  .hero-text-img img {
    display: none;
  }

  .hero-text-img {
    display: none;
  }
}

@media only screen and (max-width:480px) {
  .hero-text-img img {
    display: block;
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .hero-text-img {
    display: flex;
    bottom: -20px;
    right: 0;
    width: 100%;
    justify-content: flex-end;
    padding-right: 20px;
  }
}

/*FEATURES SECTION*/
.features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0 30px 0;
  margin-left: 68px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 16px;
  color: #0b104a;
}

.feature svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

@media only screen and (max-width:480px) {
  .features {
    gap: 12px;
    margin: 20px 0 20px 0;
  }

  .feature {
    font-size: 14px;
    gap: 12px;
  }
}

.home_ps {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.home_ps span {
  font-size: 30px;
  color: #541cae;
}

.home_ps h2 {
  font-size: 24px;
  color: #0b104a;
  margin: 10px 0 5px 0;
  font-weight: 700;
}

.home_ps p {
  font-size: 14px;
  color: #4a5355;
  margin: 0;
}

/*HOME TWO BANNER CSS*/
.hero-text2 {
  position: relative;
}

.hero-text2 h1 span {
  color: #f26b65;
}

.hero-text2 h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 74px;
  padding-top: 250px;
  margin-bottom: 20px;
}

@media only screen and (max-width:960px) {
  .hero-text2 h1 {
    padding-top: 150px;
    font-size: 64px;
    line-height: 74px;
  }
}

@media only screen and (max-width:768px) {
  .hero-text2 h1 {
    padding-top: 150px;
    font-size: 64px;
    line-height: 74px;
  }
}

@media only screen and (max-width:480px) {
  .hero-text2 h1 {
    padding-top: 250px;
    font-size: 34px;
    line-height: 44px;
  }
}

.hero-text2 p {
  width: 80%;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero-text-img2 {
  position: absolute;
  bottom: 0;
  left: 5%;
}

.hero-text-img2 {}

@media only screen and (max-width:960px) {
  .hero-text-img2 img {
    display: none;
  }
}

/*SUBSCRIBE FIELD*/
.banner_subs2 {
  display: block;
  position: relative;
  margin-top: 30px;
}

@media only screen and (max-width:480px) {
  .banner_subs2 {
    display: none;
  }
}

.banner_subs2 button {
  border: none;
}

.home_si2 {
  background: #fff;
  border-radius: 0px;
  color: #0b104a;
  display: block;
  height: 70px;
  letter-spacing: 1px;
  margin: 0;
  padding: 0 60px 0 20px;
  text-transform: capitalize;
  width: 100%;
}

.home_si2:focus {
  outline: 0 none;
  box-shadow: none;
  border: 1px solid #525fe1 !important;
}

.home_sb2 button {
  background-color: #525fe1;
  border-radius: 0px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 20px;
  height: 60px;
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 0 20px;
  width: 25%;
  transition: 0.3s;
}

.home_sb2 button:hover {
  color: #fff;
  background: #f26b65;
}

.home_tag {
  margin-top: 30px;
  position: relative;
}

.home_tag span {
  color: #fff;
}

.home_tag a {
  color: #fff;
  font-weight: 600;
  padding: 0 5px;
  text-decoration: underline;
  transition: 0.3s;
}

.home_tag a:hover {
  color: #f26b65;
}

/*END SUBSCRIBE FIELD*/
/*END HOME TWO BANNER CSS*/


.home_ps {
  background: #fff;
  width: 250px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  position: absolute;
  top: 45%;
  right: 20%;
  left: 60%;
}

@media only screen and (max-width:1024px) {
  .home_ps {
    display: none;
  }
}

@media only screen and (max-width:880px) {
  .home_ps {
    display: none;
  }
}

@media only screen and (max-width:480px) {
  .home_ps {
    left: 35%;
    display: block
  }
}

.home_ps span {
  color: #2D36BB;
  background: #ECEDFF;
  width: 50px;
  float: left;
  height: 50px;
  line-height: 50px;
  border-radius: 30px;
  font-size: 20px;
  text-align: center;
  margin-right: 15px;
}

.home_ps h2 {
  font-weight: 500;
}

/*
* ----------------------------------------------------------------------------------------
* 03.END HOME DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 04.START COUNTER DESIGN
* ----------------------------------------------------------------------------------------
*/
/* section Two */

.courses-section {
  min-height: 100vh;
  padding: 40px 0;
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
li,
a,
span {
  font-family: "DM Sans", sans-serif;
}

.course-heading h2 {
  font-size: 31px;
  font-weight: 700;
  color: #101034;
  margin-bottom: 4px;
}

.course-heading p {
  font-size: 14px;
  font-weight: 700;
  color: #32324d;
  margin-bottom: 25px;
}

.course-card {
  max-width: 345px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 8px 25px rgba(29, 20, 79, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}





.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(29, 20, 79, 0.15);
}

.course-top {
  padding: 18px 20px 12px;
  text-align: center;
  color: #ffffff;
}

.purple-bg {
  background: linear-gradient(135deg, #3d0b9f, #6819d2);
}

.pink-bg {
  background: linear-gradient(135deg, #e62d7f, #f04d9a);
}

.course-top h3 {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.course-top p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

.course-body {
  padding: 22px 28px 24px;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}

.price-box span {
  font-size: 16px;
  font-weight: 700;
  color: #5a407a;
  text-decoration: line-through;
}

.price-box h4 {
  font-size: 34px;
  font-weight: 700;
  color: #070821;
  margin-bottom: 0;
}

.course-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.course-body li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #24243b;
}

.course-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  background: #5b16c9;
}

.pink-bg+.course-body li::before {
  background: #ee3b8d;
}

.enroll-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 5px;
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.purple-btn {
  background: linear-gradient(135deg, #4210a5, #6416cf);
}

.pink-btn {
  background: linear-gradient(135deg, #e83286, #ef4598);
}

.combo-offer {
  max-width: 1220px;
  margin: 28px auto 0;
  padding: 24px 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #26075f, #3c0b86);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
}

.deal-badge {
  background: #ffe600;
  color: #170b33;
  padding: 9px 14px;
  border-radius: 30px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.combo-title {
  flex: 1;
}

.combo-title h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.combo-title p {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
}

.combo-price {
  min-width: 190px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.combo-price span {
  font-size: 20px;
  font-weight: 700;
  text-decoration: line-through;
  color: #d8d1eb;
}

.combo-price h4 {
  font-size: 42px;
  font-weight: 700;
  color: #ffe938;
  margin-bottom: 0;
}

.offer-btn {
  background: #ffffff;
  color: #11112d;
  padding: 14px 38px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.offer-btn:hover {
  background: #ffe600;
  color: #170b33;
}

@media (max-width: 991px) {
  .combo-offer {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  .combo-title {
    flex: 0 0 100%;
  }

  .combo-price {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .courses-section {
    padding: 30px 0;
  }

  .course-heading h2 {
    font-size: 28px;
  }

  .course-card {
    max-width: 100%;
  }

  .course-body {
    padding: 20px;
  }

  .price-box h4 {
    font-size: 28px;
  }

  .combo-offer {
    padding: 22px 18px;
  }

  .combo-title h3,
  .combo-title p {
    font-size: 23px;
  }

  .combo-price h4 {
    font-size: 34px;
  }

  .offer-btn {
    width: 100%;
    text-align: center;
  }
}


/* section three */
.nihongo-section {
  min-height: 100vh;
  padding: 35px 0 55px;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 230, 241, 0.9), transparent 24%),
    radial-gradient(circle at 85% 65%, rgba(255, 229, 239, 0.9), transparent 22%),
    #ffffff;
  overflow: hidden;
}

.nihongo-section .container {
  max-width: 1240px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
li,
span {
  font-family: "DM Sans", sans-serif;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 31px;
  font-weight: 700;
  color: #101034;
}

.title-dash {
  width: 8px;
  height: 3px;
  border-radius: 20px;
  background: #f0569c;
}

.choose-row {
  margin-bottom: 45px;
}

.feature-box {
  text-align: center;
  height: 100%;
}

.icon-circle {
  width: 82px;
  height: 82px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffe7f1;
}

.icon-circle svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #f04493;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111633;
  margin-bottom: 7px;
}

.feature-box p {
  max-width: 150px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  color: #303348;
}

.learn-row {
  position: relative;
}

.learn-row::after {
  content: "";
  position: absolute;
  right: -55px;
  top: 18px;
  width: 270px;
  height: 210px;
  background-image:
    radial-gradient(circle at 30% 30%, #f7a6c8 0 7px, transparent 8px),
    radial-gradient(circle at 70% 35%, #f8b6d2 0 9px, transparent 10px),
    radial-gradient(circle at 45% 70%, #f9c4da 0 8px, transparent 9px);
  opacity: 0.7;
  pointer-events: none;
}

.image-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(22, 23, 55, 0.16);
}

.image-card img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
}

.learn-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.learn-content h3 {
  font-size: 31px;
  font-weight: 700;
  color: #101034;
  margin-bottom: 14px;
}

.learn-content p {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
  color: #303348;
  margin-bottom: 18px;
}

.learn-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.learn-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #20233c;
}

.learn-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #f4e8f8;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.2 6.6 11 12.3 5' fill='none' stroke='%23804eda' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.journey-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 12px 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #5b1ec6, #7b37dc);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(91, 30, 198, 0.22);
}

.journey-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #4d16b3, #6d29cf);
}

@media (max-width: 991px) {
  .nihongo-section {
    padding: 32px 0 45px;
  }

  .section-title h2 {
    font-size: 27px;
  }

  .choose-row {
    margin-bottom: 35px;
  }

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

  .learn-row::after {
    width: 190px;
    height: 160px;
    right: 0;
    top: 45%;
  }
}

@media (max-width: 767px) {
  .section-title {
    gap: 7px;
    margin-bottom: 24px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .icon-circle {
    width: 72px;
    height: 72px;
    margin-bottom: 13px;
  }

  .icon-circle svg {
    width: 31px;
    height: 31px;
  }

  .feature-box h4 {
    font-size: 13px;
  }

  .feature-box p {
    font-size: 11px;
  }

  .image-card img {
    height: 270px;
  }

  .learn-content h3 {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .nihongo-section {
    padding: 28px 0 38px;
  }

  .section-title h2 {
    font-size: 21px;
  }

  .title-dash {
    width: 6px;
  }

  .choose-row {
    row-gap: 24px;
  }

  .feature-box p {
    max-width: 135px;
  }

  .image-card img {
    height: 235px;
  }

  .learn-content p,
  .learn-content li {
    font-size: 13px;
  }

  .journey-btn {
    width: 100%;
  }
}

/* section four */
.jlpt-section {
  min-height: 100vh;
  padding: 48px 0 38px;
  background:
    radial-gradient(circle at 16% 30%, rgba(244, 229, 255, 0.9), transparent 20%),
    radial-gradient(circle at 90% 8%, rgba(238, 224, 255, 0.8), transparent 20%),
    #ffffff;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
li,
span {
  font-family: "DM Sans", sans-serif;
}

.top-area {
  margin-bottom: 58px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-heading span {
  width: 12px;
  height: 3px;
  border-radius: 30px;
  background: #ef4e9a;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 31px;
  font-weight: 700;
  color: #101331 !important;
}

.intro-text {
  max-width: 660px;
  margin: 16px auto 36px;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  color: #252943;
}

.level-wrapper {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.level-circle {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background: linear-gradient(145deg, #f1e3ff, #fbf6ff);
}

.level-circle h3 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #5b18c7;
}

.level-circle p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #6e43a6;
}

.benefit-card {
  position: relative;
  min-height: 245px;
  padding: 34px 28px;
  border-radius: 15px;
  background: linear-gradient(135deg, #4a159e, #6d28ca);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(66, 19, 142, 0.2);
}

.benefit-content {
  position: relative;
  z-index: 2;
  max-width: 280px;
}

.benefit-content h3 {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
}

.benefit-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.benefit-content li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.benefit-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.1 6.7 11 12.4 5' fill='none' stroke='%23ef4e9a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.japan-svg {
  position: absolute;
  right: -5px;
  bottom: -2px;
  width: 270px;
  z-index: 1;
}

.japan-svg svg {
  width: 100%;
  height: auto;
  display: block;
}

.students-heading {
  margin-bottom: 25px;
}

.flower-icon {
  width: 28px;
  height: 28px;
  margin-top: 12px;
}

.testimonial-slider {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  padding: 4px 3px 10px;
}

.slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: testimonialMove 22s linear infinite;
}

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

.testimonial-card {
  flex: 0 0 calc((1180px - 60px) / 3);
  min-height: 230px;
  padding: 30px 40px 25px;
  border: 1px solid #ebe8f1;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(26, 24, 57, 0.08);
}

.stars {
  margin-bottom: 13px;
  font-size: 19px;
  letter-spacing: 2px;
  color: #ffbd12;
}

.testimonial-card p {
  min-height: 74px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
  color: #1f2338;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.student-info img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.student-info h4 {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
  color: #121631;
}

.student-info span {
  font-size: 13px;
  font-weight: 600;
  color: #242840;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.slider-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d9d9df;
}

.slider-dots .active-dot {
  width: 28px;
  border-radius: 30px;
  background: #5c1ec7;
}

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

  100% {
    transform: translateX(calc(-1 * (((1180px - 60px) / 3 + 30px) * 5)));
  }
}

@media (max-width: 1199px) {
  .testimonial-card {
    flex-basis: calc((960px - 60px) / 3);
  }

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

    100% {
      transform: translateX(calc(-1 * (((960px - 60px) / 3 + 30px) * 5)));
    }
  }
}

@media (max-width: 991px) {
  .jlpt-section {
    padding: 38px 0;
  }

  .top-area {
    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .benefit-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .testimonial-card {
    flex-basis: calc((720px - 30px) / 2);
  }

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

    100% {
      transform: translateX(calc(-1 * (((720px - 30px) / 2 + 30px) * 5)));
    }
  }
}

@media (max-width: 767px) {
  .intro-text {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .level-circle {
    width: 112px;
    height: 112px;
  }

  .level-circle h3 {
    font-size: 31px;
  }

  .level-circle p {
    font-size: 13px;
  }

  .benefit-card {
    padding: 28px 22px;
  }

  .japan-svg {
    width: 220px;
    opacity: 0.8;
  }

  .testimonial-card {
    flex-basis: calc(540px - 20px);
    padding: 26px 28px;
  }

  .slider-track {
    gap: 20px;
  }

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

    100% {
      transform: translateX(calc(-1 * ((540px + 20px) * 5)));
    }
  }
}

@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 24px;
  }

  .section-heading span {
    width: 9px;
  }

  .level-wrapper {
    gap: 14px;
  }

  .level-circle {
    width: 96px;
    height: 96px;
  }

  .level-circle h3 {
    font-size: 27px;
  }

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

  .benefit-content h3 {
    font-size: 22px;
  }

  .benefit-content li {
    font-size: 13px;
  }

  .japan-svg {
    position: relative;
    right: auto;
    bottom: auto;
    width: 230px;
    margin: 10px auto -25px;
  }

  .testimonial-card {
    flex-basis: calc(100vw - 46px);
    min-height: 245px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

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

    100% {
      transform: translateX(calc(-1 * ((100vw - 26px) * 5)));
    }
  }
}

/* section five */
.sensei-section {
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
li,
span {
  font-family: "DM Sans", sans-serif;
}

.sensei-top {
  padding: 34px 0 42px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.15), transparent 18%),
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.12), transparent 20%),
    linear-gradient(135deg, #7541cf 0%, #39107f 100%);
}

.sensei-top .container {
  max-width: 1240px !important;
}

.stats-strip .container {
  max-width: 1240px !important;
}

.cta-strip .container {
  max-width: 1240px !important;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.section-heading span {
  width: 24px;
  height: 3px;
  border-radius: 30px;
  background: rgba(255, 184, 220, 0.7);
}

.sensei-heading-h2 {
  margin-bottom: 0;
  font-size: 31px;
  font-weight: 700;
  color: #ffffff;
}

.top-subtitle {
  margin: 12px 0 28px;
  font-size: 15px;
  font-weight: 600;
  color: #f4ecff;
}

.teacher-card {
  text-align: center;
  color: #ffffff;
}

.teacher-img {
  width: 128px;
  height: 128px;
  margin: 0 auto 16px;
  padding: 4px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(17, 9, 49, 0.24);
}

.teacher-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.teacher-card h4 {
  /* margin-bottom: 3px; */
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

.teacher-card p {
  /* margin-bottom: 2px; */
  font-size: 13px;
  font-weight: 600;
  color: #f5ecff;
}

.teacher-card span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.approach-card {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  padding: 34px 36px;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(16, 9, 50, 0.25);
}

.approach-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  color: #571abe;
}

.approach-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.approach-card li {
  position: relative;
  padding-left: 29px;
  margin-bottom: 17px;
  font-size: 14px;
  font-weight: 700;
  color: #2a2440;
}

.approach-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #5b1fc7;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.1 6.7 11 12.4 5' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

.approach-flower {
  position: absolute;
  right: -16px;
  bottom: -10px;
  width: 180px;
  height: auto;
}

.stats-strip {
  padding: 30px 0;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(26, 21, 55, 0.08);
}

.stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.stat-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fbedf6;
}

.stat-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #541cae;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-box h3 {
  margin-bottom: 2px;
  font-size: 43px;
  line-height: 1;
  font-weight: 700;
  color: #5618c0;
}

.stat-box p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  color: #221d38;
}

.cta-strip {
  position: relative;
  padding: 30px 0;
  background: linear-gradient(135deg, #7441cf 0%, #3a1081 100%);
  overflow: hidden;
}

.cta-strip h2,
.cta-strip h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  font-size: 31px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
}

.demo-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 315px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 9px;
  background: #ffffff;
  color: #21173c;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(20, 11, 48, 0.18);
}

.demo-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #371080;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-btn:hover {
  background: #ffe600;
  color: #170b33;
}

.cta-flower {
  position: absolute;
  bottom: -8px;
  width: 170px;
  height: auto;
  z-index: 1;
}

.left-flower {
  left: -18px;
}

.right-flower {
  right: -18px;
}

@media (max-width: 1199px) {
  .teacher-img {
    width: 112px;
    height: 112px;
  }

  .stat-box h3 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .sensei-top {
    padding: 32px 0 38px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .approach-card {
    max-width: 520px;
  }

  .cta-strip {
    text-align: center;
  }

  .cta-strip h2,
  .cta-strip h3 {
    font-size: 27px;
  }

  .demo-btn {
    min-width: 290px;
  }
}

@media (max-width: 767px) {
  .teacher-img {
    width: 105px;
    height: 105px;
  }

  .teacher-card h4 {
    font-size: 16px;
  }

  .approach-card {
    padding: 28px 24px;
  }

  .approach-card h3 {
    font-size: 22px;
  }

  .stat-box {
    justify-content: flex-start;
    max-width: 245px;
    margin: 0 auto;
  }

  .cta-strip h2,
  .cta-strip h3 {
    font-size: 23px;
  }

  .cta-flower {
    width: 125px;
    opacity: 0.65;
  }
}

@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 23px;
  }

  .section-heading span {
    width: 16px;
  }

  .top-subtitle {
    font-size: 13px;
  }

  .teacher-img {
    width: 94px;
    height: 94px;
  }

  .teacher-card p,
  .teacher-card span {
    font-size: 12px;
  }

  .approach-card li {
    font-size: 13px;
  }

  .stat-icon {
    width: 58px;
    height: 58px;
  }

  .stat-icon svg {
    width: 32px;
    height: 32px;
  }

  .stat-box h3 {
    font-size: 31px;
  }

  .stat-box p {
    font-size: 13px;
  }

  .demo-btn {
    width: 100%;
    min-width: auto;
    font-size: 14px;
  }
}




/*
* ============================================================
* REMAINING SECTIONS: FOOTER
* ============================================================
*/

/*
* ----------------------------------------------------------------------------------------
* 12.START FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
.footer {
  background: #091237;
}

.single_footer {
  position: relative;
}

@media only screen and (max-width:960px) {
  .single_footer {
    margin-bottom: 30px;
  }
}

.single_footer img {
  margin-bottom: 20px;
  width: 150px;
}

.single_footer h4 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 20px;
}

.single_footer p {
  margin-bottom: 30px;
  color: #ffffff;
}

.single_footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single_footer ul li {}

.single_footer ul li a {
  color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 36px;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.single_footer ul li a:hover {
  color: #525fe1;
}

.sf_contact {
  margin-bottom: 20px;
  overflow: hidden;
}

.sf_contact span {
  color: #ffffff;
  font-size: 22px;
  float: left;
  margin-top: 5px;
  margin-right: 20px;
}

.sf_contact p {
  overflow: hidden;
  margin-bottom: 0;
  color: #ffffff;
}

.sf_contact p a {
  color: #ffffff;
}

.sf_contact p a:hover {
  color: #f26b65;
}

.footer_menu {
  float: right;
}

@media only screen and (max-width:480px) {
  .footer_menu {
    float: left;
    margin-top: 20px;
  }
}

.footer_menu ul {
  list-style: none;
}

.footer_menu ul li {
  float: left;
}

.footer_menu ul li a {
  color: #fff;
  padding: 0px 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer_menu ul li a:hover {
  color: #525fe1;
  text-decoration: underline;
}

.social_profile {
  margin-top: 10px;
}

@media only screen and (max-width:960px) {
  .social_profile {
    margin-bottom: 30px;
    overflow: hidden;
  }
}

.social_profile ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.social_profile ul li {
  float: left;
}

.social_profile ul li a {
  text-align: center;
  border: 0px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-right: 10px;
  font-size: 16px;
  color: #000;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 30px;
  transition: 0.3s;
  background: #fff;
}

.social_profile ul li a:hover {
  transform: translateY(-5px);
}

@media only screen and (max-width:768px) {
  .social_profile ul li a {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width:480px) {
  .social_profile ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.social_profile ul li a:hover {
  color: #fff;
}

.f_facebook:hover {
  background: #3B5998;
}

.f_twitter:hover {
  background: #1A90D9;
}

.f_instagram:hover {
  background: #FF5252;
}

.f_linkedin:hover {
  background: #0e76a8;
}

.foot_img {
  width: 100%;
}

.foot_copy {
  background: #e8e8ff;
  padding: 20px 0;
}

.foot_copy p {
  text-align: center;
  font-weight: 500;
}

.home_bg .container {
  max-width: 1405px !important;
}

/*
* ----------------------------------------------------------------------------------------
* 12.END FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
/* about page */

.about-hero-section {
  width: 100vw;
  height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.about-story-section .container {
  max-width: 1240px !important;
}

.about-hero-section .container {
  max-width: 1360px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
span {
  font-family: "DM Sans", sans-serif;
}

.about-hero-row {
  height: 80vh;
}

.about-hero-content {
  max-width: 660px;
  padding: 70px 0;
  margin-left: 52px;
}

.about-hero-label {
  display: inline-block;
  margin-bottom: 24px;
  color: #e23484;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.about-hero-content h1 {
  margin-bottom: 28px;
  color: #101034;
  font-size: 54px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0;
}

.about-hero-content h1 span {
  display: block;
  color: #e23484;
  font-family: "Jost", sans-serif;
}

.about-hero-content p {
  max-width: 640px;
  margin-bottom: 36px;
  color: #101034;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.about-demo-btn {
  background: #541cae;
  border: 1px solid #541cae;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  transition: 0.3s;
  font-weight: 600;
}

.about-demo-btn:hover {
  background: #ee5096;
  color: #fff;
  border: 1px solid #ee5096;
}

.about-demo-btn svg {
  width: 21px;
  height: 15px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-hero-image {
  height: 650px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-hero-image img {
  width: 100%;
  max-width: 820px;
  max-height: 610px;
  object-fit: contain;
  object-position: bottom right;
}

@media (max-width: 1199px) {
  .about-hero-image {
    height: 550px;
  }

  .about-hero-image img {
    max-width: 100%;
    max-height: 500px;
  }
}

@media (max-width: 1199px) {
  .about-hero-content h1 {
    font-size: 58px;
  }

  .about-hero-content p {
    font-size: 20px;
  }

  .about-hero-label {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .about-hero-section {
    height: auto;
    padding-top: 0;
    overflow: visible;
  }

  .about-hero-row {
    height: auto;
    flex-direction: column;
  }

  .about-hero-content {
    max-width: 100%;
    padding: 45px 20px 30px;
    text-align: center;
    margin-left: 0;
  }

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

  .about-hero-image {
    height: auto;
    justify-content: center;
    padding-bottom: 30px;
  }

  .about-hero-image img {
    max-width: 100%;
    width: 100%;
    max-height: 400px;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .about-hero-section {
    height: auto;
    background-size: cover;
    background-position: center;
  }

  .about-hero-content h1 {
    font-size: 44px;
  }

  .about-hero-label {
    font-size: 23px;
  }

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

  .about-demo-btn {
    min-height: 56px;
    padding: 14px 26px;
    font-size: 17px;
  }

  .about-demo-btn svg {
    width: 23px;
    height: 23px;
  }

  .about-hero-image img {
    max-width: 90%;
    max-height: 350px;
  }
}

@media (max-width: 575px) {
  .about-hero-section {
    height: auto;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    right: 0;
    background-position: center;
    overflow: visible;
  }

  .about-hero-section .container {
    max-width: 100% !important;
    padding: 0 15px;
  }

  .about-hero-row {
    height: auto;
  }

  .about-hero-content {
    padding: 35px 15px 30px;
    margin-left: 0;
  }

  .about-hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .about-hero-content p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .about-demo-btn {
    width: 100%;
    font-size: 15px;
  }

  .about-hero-image {
    padding-bottom: 20px;
  }

  .about-hero-image img {
    max-width: 100%;
    max-height: 300px;
    width: 100%;
  }
}

.about-story-section {
  padding: 42px 0 24px;
  background:
    radial-gradient(circle at 15% 12%, rgba(244, 229, 255, 0.9), transparent 20%),
    radial-gradient(circle at 88% 64%, rgba(255, 233, 242, 0.9), transparent 20%),
    #ffffff;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
li,
span {
  font-family: "DM Sans", sans-serif;
}

.story-top-row {
  margin-bottom: 28px;
}

.story-image-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(19, 22, 49, 0.13);
}

.story-image-card img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.story-image-card:hover img {
  transform: scale(1.05);
}

.story-content {
  max-width: 575px;
}

.small-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.small-heading span {
  color: #ef3f8d;
  font-size: 15px;
  font-weight: 800;
}

.small-heading i {
  width: 48px;
  height: 2px;
  border-radius: 20px;
  background: #ef94bf;
}

.story-content h1 {
  margin-bottom: 18px;
  color: #101034;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 700;
}

.story-content h1 span {
  display: block;
  color: #ef3f8d;
  font-family: "Jost", sans-serif;
}

.story-content p {
  margin-bottom: 18px;
  color: #222641;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 4px;
}

.section-title span {
  width: 34px;
  height: 2px;
  border-radius: 20px;
  background: #f19ac1;
}

.section-title svg {
  width: 27px;
  height: 27px;
}

.main-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 25px;
}

.main-heading span {
  width: 34px;
  height: 2px;
  border-radius: 20px;
  background: #f19ac1;
}

.main-heading h2 {
  margin-bottom: 0;
  color: #101034;
  font-size: 31px;
  font-weight: 700;
}

.choose-card-row {
  margin-bottom: 42px;
}

.choose-card {
  height: 100%;
  min-height: 225px;
  padding: 25px 18px 20px;
  border: 1px solid #e8e4ef;
  border-radius: 9px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(23, 20, 51, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-8px);
  border-color: #d7c7f3;
  box-shadow: 0 16px 34px rgba(68, 26, 146, 0.15);
}

.choose-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 17px;
  color: #5b1fc7;
}

.choose-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pink-icon {
  color: #ef3f8d;
  background: none !important;
}

.choose-card h3 {
  margin-bottom: 10px;
  color: #111637;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
}

.choose-card p {
  margin-bottom: 0;
  color: #252a45;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.mission-vision-box {
  margin-bottom: 28px;
  padding: 25px 34px;
  border-radius: 12px;
  background: linear-gradient(90deg, #fbebf7 0%, #f4eafe 52%, #fbebf7 100%);
}

.mission-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.round-icon {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #4b16a8, #6823cc);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(75, 22, 168, 0.2);
  transition: transform 0.3s ease;
}

.mission-item:hover .round-icon {
  transform: rotate(-8deg) scale(1.05);
}

.round-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-item h3 {
  margin-bottom: 7px;
  color: #5b1fc7;
  font-size: 21px;
  font-weight: 800;
}

.mission-item p {
  margin-bottom: 0;
  color: #202640;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.flower-tree svg {
  max-width: 120px;
  height: auto;
}

.stats-panel {
  margin-bottom: 28px;
  padding: 28px 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #331078, #5e20c6);
  box-shadow: 0 16px 34px rgba(57, 17, 131, 0.2);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 19px;
  height: 100%;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stats-panel .col-lg-3:last-child .stat-item {
  border-right: 0;
}

.stat-item svg {
  flex: 0 0 55px;
  width: 55px;
  height: 55px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-item h3 {
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 35px;
  line-height: 1;
  font-weight: 800;
}

.stat-item p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.journey-cta {
  min-height: 120px;
  padding: 20px 48px 18px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 35px;
  background: linear-gradient(90deg, #ffe8f3 0%, #fff1f7 55%, #ffe3ef 100%);
  overflow: hidden;
}

.cta-art {
  flex: 0 0 250px;
  margin-bottom: -38px;
}

.cta-art svg {
  width: 100%;
  height: auto;
  display: block;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  margin-bottom: 8px;
  color: #ef3f8d;
  font-size: 31px;
  font-weight: 700;
}

.cta-text p {
  max-width: 440px;
  margin-bottom: 0;
  color: #202640;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.cta-btn {
  background: #541cae;
  border: 1px solid #541cae;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  transition: 0.3s;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(75, 22, 168, 0.28);
  background: #ee5096;
  color: #fff;
  border: 1px solid #ee5096;
}

.cta-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1199px) {
  .choose-card {
    min-height: 215px;
  }

  .stat-item h3 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .about-story-section {
    padding-top: 34px;
  }

  .story-content {
    max-width: 100%;
    text-align: center;
  }

  .small-heading {
    justify-content: center;
  }

  .story-content h1 {
    font-size: 34px;
  }

  .mission-item,
  .vision-item {
    justify-content: center;
    text-align: left;
  }

  .stat-item {
    border-right: 0;
    justify-content: center;
  }

  .journey-cta {
    padding: 22px 28px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .cta-text {
    flex: 0 0 100%;
  }

  .cta-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .story-image-card img {
    height: 270px;
  }

  .main-heading h2 {
    font-size: 25px;
  }

  .main-heading span {
    width: 24px;
  }

  .mission-vision-box {
    padding: 24px 20px;
  }

  .mission-item {
    flex-direction: column;
    text-align: center;
  }

  .stats-panel {
    padding: 25px 22px;
  }

  .stat-item {
    justify-content: flex-start;
    max-width: 240px;
    margin: 0 auto;
  }

  .cta-art {
    flex-basis: 220px;
  }
}

@media (max-width: 575px) {
  .story-content h1 {
    font-size: 29px;
  }

  .story-content p {
    font-size: 13px;
  }

  .main-heading h2 {
    font-size: 21px;
  }

  .choose-card {
    min-height: 220px;
    padding: 22px 14px 18px;
  }

  .choose-icon {
    width: 50px;
    height: 50px;
  }

  .choose-card h3 {
    font-size: 14px;
  }

  .choose-card p {
    font-size: 11px;
  }

  .round-icon {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .cta-btn {
    width: 100%;
    min-width: auto;
  }
}


/* contact page */

.contact-hero-section {
  min-height: 380px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contact-hero-section .container {
  max-width: 1270px !important;
}

.contact-main-section .container {
  max-width: 1270px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
span {
  font-family: "DM Sans", sans-serif;
}

.contact-hero-row {
  min-height: 380px;
}

.contact-hero-content {
  max-width: 700px;
  padding: 45px 0;
}

.contact-hero-content h1 {
  margin-bottom: 22px;
  color: #101034;
  font-size: 76px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-hero-subtitle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.contact-hero-subtitle span {
  width: 44px;
  height: 3px;
  border-radius: 20px;
  background: #ef6aa8;
}

.contact-hero-subtitle svg {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
}

.contact-hero-subtitle h2 {
  margin-bottom: 0;
  color: #e83f8f;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 800;
}

.contact-hero-content p {
  max-width: 620px;
  margin-bottom: 0;
  color: #111936;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .contact-hero-content h1 {
    font-size: 66px;
  }

  .contact-hero-content p {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .contact-hero-section {
    min-height: 340px;
    background-position: center center;
  }

  .contact-hero-row {
    min-height: 340px;
  }

  .contact-hero-content h1 {
    font-size: 58px;
  }

  .contact-hero-subtitle h2 {
    font-size: 23px;
  }

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

@media (max-width: 767px) {
  .contact-hero-section {
    min-height: 320px;
    background-position: center top;
  }

  .contact-hero-row {
    min-height: 320px;
  }

  .contact-hero-content {
    padding: 40px 0;
  }

  .contact-hero-content h1 {
    font-size: 48px;
  }

  .contact-hero-subtitle {
    gap: 10px;
    flex-wrap: wrap;
  }

  .contact-hero-subtitle span {
    width: 30px;
  }

  .contact-hero-subtitle h2 {
    font-size: 20px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .contact-hero-section {
    min-height: 300px;
    background-position: 58% center;
  }

  .contact-hero-row {
    min-height: 300px;
  }

  .contact-hero-content {
    max-width: 100%;
  }

  .contact-hero-content h1 {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .contact-hero-subtitle svg {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .contact-hero-subtitle h2 {
    font-size: 18px;
  }

  .contact-hero-content p {
    max-width: 330px;
    font-size: 14px;
  }
}

.contact-main-section {
  padding: 42px 0 22px;
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 230, 255, 0.8), transparent 22%),
    radial-gradient(circle at 90% 65%, rgba(255, 233, 243, 0.9), transparent 24%),
    #ffffff;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
li,
span,
label,
input,
select,
textarea,
button,
.accordion-body {
  font-family: "DM Sans", sans-serif;
}

.contact-top-row {
  margin-bottom: 42px;
}

.connect-panel h2,
.message-panel h2,
.office-content h2 {
  margin-bottom: 12px;
  color: #121735;
  font-size: 31px;
  font-weight: 700;
}

.connect-panel h2 span,
.message-panel h2 span,
.office-content h2 span,
.faq-heading h2 em {
  color: #ef3f8d;
  font-style: normal;
}

.connect-panel>p,
.message-panel>p,
.office-content>p {
  margin-bottom: 24px;
  color: #252a44;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  margin-bottom: 16px;
  padding: 20px 22px;
  border: 1px solid #ece8f2;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(26, 24, 55, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(72, 26, 145, 0.14);
}

.contact-info-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
}

.purple-icon {
  background: #5b1fc7;
}

.pink-icon {
  background: #ef3f8d;
}

.green-icon {
  background: #20c45a;
}

.contact-info-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-card h3 {
  margin-bottom: 3px;
  color: #171b39;
  font-size: 13px;
  font-weight: 800;
}

.contact-info-card a {
  display: inline-block;
  color: #101536;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.contact-info-card p {
  margin-bottom: 0;
  color: #252a44;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.message-panel,
.office-panel {
  padding: 28px 32px;
  border: 1px solid #ece8f2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(26, 24, 55, 0.08);
}

.message-panel label {
  margin-bottom: 8px;
  color: #141936;
  font-size: 13px;
  font-weight: 800;
}

.message-panel label span {
  color: #ef3f8d;
}

.message-panel .form-control,
.message-panel .form-select {
  min-height: 47px;
  border: 1px solid #dcd6e8;
  border-radius: 8px;
  color: #151936;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}

.message-panel textarea.form-control {
  min-height: 118px;
  resize: none;
}

.message-panel .form-control:focus,
.message-panel .form-select:focus {
  border-color: #6a26cc;
  box-shadow: 0 0 0 4px rgba(106, 38, 204, 0.11);
}

.send-message-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #41119d, #6823cc);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.send-message-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(65, 17, 157, 0.25);
  background: rgb(238, 80, 150);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(238, 80, 150);
}

.send-message-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.secure-text {
  margin-top: 14px;
  color: #697088;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.secure-text svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vertical-align: -3px;
}

.office-panel {
  margin-bottom: 34px;
  padding: 0;
  overflow: hidden;
}

.map-box {
  position: relative;
  min-height: 310px;
}

.map-box img {
  width: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;
}

.map-card {
  position: absolute;
  left: 28px;
  top: 65px;
  width: 215px;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(21, 25, 54, 0.18);
}

.map-card h3 {
  margin-bottom: 10px;
  color: #111637;
  font-size: 15px;
  font-weight: 800;
}

.map-card p {
  margin-bottom: 12px;
  color: #252a44;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.map-card a {
  color: #5b1fc7;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.office-content {
  position: relative;
  padding: 35px 34px;
  min-height: 310px;
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  max-width: 460px;
}

.office-detail svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #5b1fc7;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.office-detail h3 {
  margin-bottom: 4px;
  color: #141936;
  font-size: 13px;
  font-weight: 800;
}

.office-detail p {
  margin-bottom: 0;
  color: #252a44;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.office-art {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 245px;
}

.office-art svg {
  width: 100%;
  height: auto;
  display: block;
}

.faq-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.faq-heading span {
  width: 34px;
  height: 2px;
  border-radius: 20px;
  background: #ef94bf;
}

.faq-heading h2 {
  margin-bottom: 0;
  color: #111637;
  font-size: 31px;
  font-weight: 700;
}

.faq-accordion .accordion-item {
  margin-bottom: 12px;
  border: 1px solid #ece8f2;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(26, 24, 55, 0.05);
}

.faq-accordion .accordion-button {
  min-height: 48px;
  padding: 14px 20px;
  color: #111637;
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #5b1fc7;
  background: #fbf7ff;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  width: 14px;
  height: 14px;
  background-size: 14px;
}

.faq-accordion .accordion-body {
  padding: 0 20px 18px;
  color: #30354f;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

@media (max-width: 991px) {
  .contact-main-section {
    padding-top: 34px;
  }

  .office-content {
    padding-bottom: 210px;
  }

  .office-art {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .message-panel {
    padding: 24px 22px;
  }

  .connect-panel h2,
  .message-panel h2,
  .office-content h2 {
    font-size: 25px;
  }

  .map-card {
    left: 18px;
    top: 45px;
  }

  .faq-heading h2 {
    font-size: 22px;
  }

  .faq-heading span {
    width: 22px;
  }
}

@media (max-width: 575px) {
  .contact-info-card {
    padding: 18px;
  }

  .message-panel {
    padding: 22px 18px;
  }

  .map-card {
    position: static;
    width: auto;
    margin: -90px 18px 20px;
  }

  .office-content {
    padding: 28px 20px 190px;
  }

  .office-art {
    width: 220px;
  }

  .faq-accordion .accordion-button {
    font-size: 13px;
  }
}


/* course page  */
/* section one */
.hero-section {
  position: relative;
  min-height: 650px;
  background-image: linear-gradient(90deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.8) 33%,
      rgba(255, 255, 255, 0.7) 40%,
      rgba(255, 255, 255, 0.0) 100%),
    url(/assets/css/Home-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(255, 255, 255, .85) 35%,
      rgba(255, 255, 255, .15) 70%,
      rgba(255, 255, 255, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 15px;

  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ee5096;
}

.hero-content h1 {
  font-family: 'Jost', sans-serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  color: #1a1a1a;

  margin-bottom: 25px;
}

.hero-content h1 span {
  color: #541cae;
}

.hero-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 30px;
  color: #555;

  margin-bottom: 35px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  color: rgb(255, 255, 255);
  font-weight: 600;

  background: #ee5096;
  border-width: 1px;
  border-style: solid;
  /* border-color: rgb(84, 28, 174); */
  border-image: initial;
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: rgb(84, 28, 174);
  color: #fff;
  transform: translateY(-4px);
}

.btn-outline-custom {
  border: 2px solid #541cae;
  color: #541cae;

  text-decoration: none;
  padding: 10px 20px;

  border-radius: 10px;
  border-style: solid;
  border-image: initial;

  font-family: 'DM Sans', sans-serif;
  font-weight: 600;

  transition: .3s;
}

.btn-outline-custom:hover {
  /* background: #541cae; */
  color: #541cae;
  transform: translateY(-4px);
}

@media(max-width:991px) {

  .hero-section {
    min-height: auto;
    padding: 90px 0;
    background-position: right center;
  }

  .hero-content h1 {
    font-size: 46px;
  }

}

@media(max-width:576px) {

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 28px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    text-align: center;
  }

}

/* section two */
/*=========================
 JLPT COURSES SECTION
=========================*/

.na-jlpt-course-section {
  padding: 90px 0;
  background: #ffffff;
}

.na-course-heading span {
  display: block;
  color: #ee5096;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 10px;
}

.na-course-heading h2 {
  font-family: 'Jost', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #0b1445;
  margin-bottom: 50px;
}

/* 5 Cards Row */

.col-xl-2-4 {
  width: 20%;
}

/* Card */

.na-course-card-wrap {
  position: relative;
  background: #fff;
  border: 2px solid #ededed;
  border-radius: 24px;
  overflow: hidden;
  transition: .4s ease;
  height: 100%;
}

.na-course-card-wrap:hover {
  transform: translateY(-10px);
  border-color: #ee5096;
  box-shadow: 0 20px 45px rgba(238, 80, 150, .15);
}

/* Featured Card */

.na-featured-card {
  border-color: #ee5096;
}

.na-popular-ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ee5096;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  z-index: 5;
  font-family: 'DM Sans', sans-serif;
}

/* Top Area */

.na-course-top-box {
  background: #faf9fc;
  min-height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.na-course-top-box img {
  max-width: 110px;
  transition: .4s;
}

.na-course-card-wrap:hover .na-course-top-box img {
  transform: scale(1.08);
}

/* Level Badge */

.na-level-circle {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #541cae;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Jost', sans-serif;
  transition: .4s;
}

.na-featured-level {
  background: #ee5096;
}

.na-course-card-wrap:hover .na-level-circle {
  background: #ee5096;
}

/* Petals */

.na-petal {
  position: absolute;
  background: #f9bfd6;
  transform: rotate(45deg);
}

.na-petal-one {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  right: 35px;
  top: 40px;
}

.na-petal-two {
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  right: 20px;
  top: 95px;
}

/* Content */

.na-course-content-box {
  padding: 10px;
}

.na-course-content-box h3 {
  font-family: 'Jost', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  color: #0b1445;
  margin-bottom: 8px;
  font-weight: 700;
}

/* List */

.na-course-content-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.na-course-content-box ul li {
  position: relative;
  padding-left: 18px;
  /* margin-bottom:10px; */
  font-size: 15px;
  color: #444;
  font-family: 'DM Sans', sans-serif;
}

.na-course-content-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: #541cae;
  font-size: 18px;
}

.na-featured-card ul li::before {
  color: #ee5096;
}

/* Duration */

.na-duration-text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  font-family: 'DM Sans', sans-serif;
}

/* Price */

.na-course-price {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #541cae;
  margin-bottom: 18px;
  transition: .4s;
}

.na-featured-price {
  color: #ee5096;
}

.na-course-card-wrap:hover .na-course-price {
  color: #ee5096;
}

/* Buttons */

.na-course-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: #541cae;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: .4s;
  font-family: 'DM Sans', sans-serif;
}

.na-course-btn:hover {
  background: #ee5096;
  color: #fff;
}

.na-featured-btn {
  background: #ee5096;
}

/* Coming Soon */

.na-coming-soon {
  text-align: center;
  color: #541cae;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Jost', sans-serif;
}

/* Notify Button */

.na-notify-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #d8c4f7;
  color: #541cae;
  font-weight: 600;
  transition: .4s;
  font-family: 'DM Sans', sans-serif;
}

.na-notify-btn:hover {
  background: #ee5096;
  border-color: #ee5096;
  color: #fff;
}

/*=========================
 TABLET
=========================*/

@media(max-width:1199px) {

  .col-xl-2-4 {
    width: 33.333%;
  }

}

@media(max-width:991px) {

  .na-course-heading h2 {
    font-size: 42px;
  }

  .col-xl-2-4 {
    width: 50%;
  }

}

/*=========================
 MOBILE
=========================*/

@media(max-width:767px) {

  .na-jlpt-course-section {
    padding: 70px 0;
  }

  .na-course-heading h2 {
    font-size: 32px;
  }

  .col-xl-2-4 {
    width: 100%;
  }

  .na-course-content-box h3 {
    font-size: 22px;
  }

  .na-course-price {
    font-size: 34px;
  }

}

/* section three */
.combo-success-section {
  padding: 35px 0 46px;
  background: #ffffff;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
span,
strong,
em {
  font-family: "DM Sans", sans-serif;
}

.combo-offer-banner {
  position: relative;
  min-height: 210px;
  margin-bottom: 48px;
  padding: 28px 58px 26px 52px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  background:
    radial-gradient(circle at 17% 28%, rgba(239, 70, 150, 0.32), transparent 18%),
    linear-gradient(135deg, #321069 0%, #4f128e 42%, #28075c 100%);
  box-shadow: 0 8px 18px rgba(35, 7, 83, 0.26);
  overflow: hidden;
}

.offer-ribbon {
  position: absolute;
  left: 52px;
  top: 0;
  width: 120px;
  height: 110px;
  padding-top: 22px;
  background: linear-gradient(135deg, #ffb20f, #ffca28);
  color: #ffffff;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 84%, 0 100%);
  z-index: 3;
}

.offer-ribbon span,
.offer-ribbon strong {
  display: block;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 1px;
}

.gift-box {
  position: relative;
  z-index: 2;
  flex: 0 0 210px;
  padding-left: 108px;
}

.gift-box svg {
  width: 170px;
  height: auto;
  display: block;
}

.combo-content {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
}

.combo-content h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.price-line span {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  text-decoration: line-through;
}

.price-line strong {
  color: #ffc31a;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

.price-line em {
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  font-style: normal;
}

.combo-content p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
}

.claim-offer-btn {
  position: relative;
  z-index: 2;
  min-width: 260px;
  min-height: 62px;
  padding: 17px 30px;
  border: 3px solid #d97800;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: linear-gradient(135deg, #ffb313, #ffc934);
  color: #16152e;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(255, 179, 19, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.claim-offer-btn:hover {
  color: #16152e;
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(255, 179, 19, 0.32);
}

.claim-offer-btn svg {
  width: 27px;
  height: 27px;
  fill: #151531;
  stroke: #ffffff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.torii-bg {
  position: absolute;
  right: 130px;
  top: 15px;
  width: 310px;
  opacity: 0.15;
  z-index: 1;
}

.success-heading {
  margin-bottom: 28px;
}

.success-heading span {
  display: block;
  margin-bottom: 6px;
  color: #ef3f8d;
  font-size: 14px;
  font-weight: 800;
}

.success-heading h2 {
  margin-bottom: 7px;
  color: #101535;
  font-size: 31px;
  font-weight: 700;
}

.heading-flower {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.heading-flower i {
  width: 40px;
  height: 3px;
  border-radius: 20px;
  background: #cfc9d7;
}

.heading-flower svg {
  width: 22px;
  height: 22px;
}

.success-feature-card {
  position: relative;
  min-height: 185px;
  padding: 0 42px;
  text-align: center;
  border-right: 1px solid #ded9e8;
  transition: transform 0.3s ease;
}

.success-feature-card:hover {
  transform: translateY(-6px);
}

.no-border {
  border-right: 0;
}

.success-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3eafb;
  color: #7932cb;
  transition: background 0.3s ease, color 0.3s ease;
}

.success-feature-card:hover .success-icon {
  background: #7932cb;
  color: #ffffff;
}

.success-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-feature-card h3 {
  margin-bottom: 10px;
  color: #111637;
  font-size: 20px;
  font-weight: 800;
}

.success-feature-card p {
  max-width: 270px;
  margin: 0 auto;
  color: #2d314b;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .combo-offer-banner {
    gap: 22px;
    padding-right: 32px;
  }

  .combo-content h2 {
    font-size: 34px;
  }

  .price-line strong {
    font-size: 48px;
  }

  .price-line span {
    font-size: 30px;
  }

  .claim-offer-btn {
    min-width: 230px;
    font-size: 18px;
  }

  .success-feature-card {
    padding: 0 26px;
  }
}

@media (max-width: 991px) {
  .combo-offer-banner {
    padding: 135px 28px 30px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .offer-ribbon {
    left: 28px;
  }

  .gift-box {
    flex-basis: 170px;
    padding-left: 0;
  }

  .combo-content {
    flex: 0 0 100%;
    order: 2;
  }

  .claim-offer-btn {
    order: 3;
  }

  .torii-bg {
    right: 20px;
  }

  .success-feature-card {
    border-right: 0;
    padding: 0 35px;
  }
}

@media (max-width: 767px) {
  .combo-offer-banner {
    border-radius: 20px;
  }

  .combo-content h2 {
    font-size: 28px;
  }

  .price-line {
    flex-wrap: wrap;
    gap: 12px;
  }

  .price-line strong {
    font-size: 42px;
  }

  .price-line em {
    font-size: 24px;
  }

  .combo-content p {
    font-size: 20px;
  }

  .success-heading h2 {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .combo-success-section {
    padding-top: 25px;
  }

  .combo-offer-banner {
    padding: 125px 18px 26px;
  }

  .offer-ribbon {
    width: 100px;
    height: 95px;
    left: 20px;
  }

  .offer-ribbon span,
  .offer-ribbon strong {
    font-size: 18px;
  }

  .gift-box svg {
    width: 135px;
  }

  .combo-content h2 {
    font-size: 23px;
  }

  .price-line span {
    font-size: 24px;
  }

  .price-line strong {
    font-size: 36px;
  }

  .claim-offer-btn {
    width: 100%;
    min-width: auto;
    font-size: 16px;
  }

  .success-heading h2 {
    font-size: 23px;
  }

  .success-feature-card p {
    font-size: 14px;
  }
}

/* section four */
:root {
  --primary: #541cae;
  --secondary: #ee5096;
  --text: #1f1633;
  --muted: #6f6780;
  --soft: #f8f5ff;
  --border: rgba(84, 28, 174, .12);
}

.journey-section {
  padding: 70px 0;
  background:
    radial-gradient(circle at top, rgba(238, 80, 150, .08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  overflow: hidden;
}

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
}

.section-head h2,
.trainer-head h3 {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  font-weight: 700;
  margin: 8px 0 8px;
}

.section-head h2 {
  font-size: 31px;
}

.trainer-head h3 {
  font-size: 31px;
}

.title-line {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto;
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.step-item {
  text-align: center;
  position: relative;
  padding: 18px 10px 8px;
  border-radius: 22px;
  transition: .35s ease;
}

.step-item::after {
  content: '';
  position: absolute;
  top: 42px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(84, 28, 174, .18), rgba(238, 80, 150, .18));
  z-index: 0;
  transform: translateX(50%);
}

.step-item:last-child::after {
  display: none;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 12px 28px rgba(84, 28, 174, .25);
  position: relative;
  z-index: 1;
  transition: .35s ease;
}

.step-icon svg {
  width: 34px;
  height: 34px;
}

.step-no {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.step-item h6,
.trainer-content h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  color: var(--text);
}

.step-item h6 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step-item p,
.trainer-content p {
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 0;
}

.step-item:hover {
  transform: translateY(-6px);
}

.step-item:hover .step-icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 16px 32px rgba(238, 80, 150, .28);
}

.trainer-head {
  margin-top: 55px;
}

.trainer-grid {
  margin-top: 18px;
}

.trainer-card {
  height: 100%;
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(84, 28, 174, .10);
  box-shadow: 0 10px 30px rgba(31, 22, 51, .06);
  transition: .35s ease;
}

.trainer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(238, 80, 150, .22);
  box-shadow: 0 18px 40px rgba(84, 28, 174, .12);
}

.trainer-img {
  width: 84px;
  min-width: 84px;
  height: 84px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(84, 28, 174, .12);
}

.trainer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .35s ease;
}

.trainer-card:hover .trainer-img img {
  transform: scale(1.05);
}

.trainer-content {
  flex: 1;
}

.trainer-content h6 {
  font-size: 18px;
  margin-bottom: 4px;
}

.stars {
  margin-top: 8px;
  color: #f5c542;
  letter-spacing: 2px;
  font-size: 13px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 10px 20px;
  border-radius: 10px;
  background: #541cae;
  color: #fff;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(84, 28, 174, .25);
  transition: .35s ease;
}

.btn-cta:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(238, 80, 150, .30);
  background: #ee5096;
}

@media (max-width: 1199px) {
  .steps-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-item::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .journey-section {
    padding: 55px 0;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
  }

  .step-item {
    padding: 18px 14px;
    background: #fff;
    border: 1px solid rgba(84, 28, 174, .08);
    box-shadow: 0 10px 24px rgba(31, 22, 51, .05);
  }

  .trainer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .trainer-img {
    width: 100%;
    height: 220px;
  }
}

.student-say {
  font-size: 14px;
  color: var(--secondary);

}

.jlpt-section-testimonials {
  padding: 48px 0 38px;
  background: radial-gradient(circle at 16% 30%, rgba(244, 229, 255, 0.9), transparent 20%), radial-gradient(circle at 90% 8%, rgba(238, 224, 255, 0.8), transparent 20%), #ffffff;
  overflow: hidden;
}

.contact-main-section-faq {
  width: 85%;
  margin: auto;
}

.hero-section .container {
  max-width: 1258px !important;
}

.na-jlpt-course-section .container {
  max-width: 1258px !important;
}

.combo-success-section .container {
  max-width: 1258px !important;
}

.journey-section .container {
  max-width: 1258px !important;
}

/* japanes cta setion  */

/* ==========================
   JAPANESE CTA SECTION
========================== */

.jpn-cta-section{
    position:relative;
    overflow:hidden;
    padding:30px 0;
    background:linear-gradient(
        90deg,
        #4a0ea8 0%,
        #6418d3 50%,
        #3a0077 100%
    );
}

.jpn-cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("https://www.transparenttextures.com/patterns/asfalt-light.png");
    opacity:.08;
}

.jpn-cta-wrapper{
    width:84%;
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;

    position:relative;
    z-index:2;
}

.jpn-cta-left{
    flex:1.5;
}

.jpn-cta-title{
    color:#fff;
    font-size:31px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:10px;
}

.jpn-cta-desc{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.6;
}

.jpn-cta-contact{
    flex:1;
}

.jpn-contact-box{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}

.jpn-contact-icon{
    font-size:18px;
}

.jpn-contact-box a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

.jpn-cta-action{
    flex-shrink:0;
}

.jpn-demo-btn{
    display:flex;
    align-items:center;
    gap:14px;

    background:#ee5096;
    color:#fff;
    text-decoration:none;

    padding:10px 20px;
    border-radius:10px;

    font-size:18px;
    font-weight:700;

    transition:.3s ease;
}

.jpn-demo-btn:hover{
    transform:translateY(-3px);
}

.jpn-btn-arrow{
    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    color:#ff2d3d;

    border-radius:50%;
    font-size:15px;
}

/* ==========================
   TABLET
========================== */

@media (max-width:991px){

    .jpn-cta-wrapper{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }

    .jpn-cta-title{
        font-size:32px;
    }

    .jpn-cta-contact{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .jpn-contact-box{
        justify-content:center;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width:576px){

    .jpn-cta-section{
        padding:25px 0;
    }

    .jpn-cta-title{
        font-size:24px;
    }

    .jpn-cta-desc{
        font-size:14px;
    }

    .jpn-contact-box{
        flex-wrap:wrap;
    }

    .jpn-contact-box a{
        font-size:14px;
    }

    .jpn-demo-btn{
        width:100%;
        justify-content:center;
        font-size:15px;
        padding:15px 20px;
    }
}

/* course_details_n5.html section one */

.n5-hero-section {
  position: relative;
  min-height: 720px;
  padding: 42px 30px 12px;
  background:
    linear-gradient(90deg, rgba(7, 12, 47, 0.96) 0%, rgba(15, 16, 72, 0.88) 43%, rgba(19, 12, 69, 0.72) 100%),
    url("assets/img/bg/n5-hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.n5-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(252, 98, 185, 0.24), transparent 18%),
    radial-gradient(circle at 30% 80%, rgba(78, 29, 188, 0.36), transparent 25%);
  pointer-events: none;
}

.n5-hero-row {
  position: relative;
  z-index: 2;
  min-height: 640px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
li,
span,
input,
select,
button,
strong {
  font-family: "DM Sans", sans-serif;
}

.n5-hero-content {
  max-width: 675px;
}

.n5-tag {
  width: fit-content;
  min-height: 47px;
  margin-bottom: 26px;
  padding: 10px 24px;
  border: 2px solid #ef3f8d;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  background: rgba(17, 14, 63, 0.55);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.n5-tag svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #ef3f8d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n5-hero-content h1 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 50px;
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
}

.n5-hero-content h1 span {
  display: block;
  color: #f45bd1;
  font-family: "Jost", sans-serif;
}

.n5-hero-content h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 29px;
  line-height: 1.25;
  font-weight: 800;
}

.n5-hero-content p {
  max-width: 545px;
  margin-bottom: 26px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.n5-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 27px;
}

.n5-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.n5-feature-list svg {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  fill: #ffffff;
  stroke: #ef3f8d;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n5-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.n5-primary-btn,
.n5-outline-btn {
  min-height: 58px;
  padding: 15px 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.n5-primary-btn {
  background:#ee5096;
  box-shadow: 0 14px 26px rgba(239, 35, 60, 0.28);
}

.n5-outline-btn {
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.n5-primary-btn:hover,
.n5-outline-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
}

.n5-primary-btn:hover {
  box-shadow: 0 18px 34px rgba(239, 35, 60, 0.36);
}

.n5-outline-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.n5-primary-btn svg,
.n5-outline-btn svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n5-student-wrap {
  position: relative;
  z-index: 2;
  height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
      margin-top: 45px;
}

.n5-student-wrap img {
  width: 100%;
  max-width: 470px;
  max-height: 640px;
  object-fit: contain;
  object-position: bottom center;
}

.n5-form-card {
  position: relative;
  z-index: 3;
  max-width: 410px;
  margin-left: auto;
  padding: 28px 28px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(6, 8, 34, 0.32);
  backdrop-filter: blur(8px);
}

.n5-form-card h3,
.n5-form-card h4 {
  text-align: center;
  text-transform: uppercase;
}

.n5-form-card h3 {
  margin-bottom: 4px;
  color: #151733;
  font-size: 18px;
  font-weight: 800;
}

.n5-form-card h4 {
  margin-bottom: 24px;
  color: #101535;
  font-size: 24px;
  font-weight: 800;
}

.n5-input-box {
  position: relative;
  margin-bottom: 15px;
}

.n5-input-box svg {
  position: absolute;
  left: 17px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  fill: none;
  stroke: #8a3bd1;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.n5-input-box input,
.n5-input-box select {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px 12px 52px;
  border: 1px solid #ded8e8;
  border-radius: 8px;
  outline: none;
  background: #ffffff;
  color: #29233f;
  font-size: 15px;
  font-weight: 700;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.n5-input-box input:focus,
.n5-input-box select:focus {
  border-color: #8a3bd1;
  box-shadow: 0 0 0 4px rgba(138, 59, 209, 0.12);
}

.n5-submit-btn {
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  background: #ee5096;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.n5-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(239, 35, 60, 0.32);
}

.n5-submit-btn svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n5-learners {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
}

.n5-avatar-group {
  display: flex;
  flex: 0 0 auto;
}

.n5-avatar-group img {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
}

.n5-avatar-group img:first-child {
  margin-left: 0;
}

.n5-learners p {
  margin-bottom: 0;
  color: #151733;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.n5-fee-card {
  position: absolute;
  left: 31%;
  bottom: 104px;
  z-index: 4;
  width: 300px;
  border: 2px solid #ef3f8d;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(7, 9, 35, 0.35);
}

.n5-fee-top {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(14, 12, 54, 0.88);
  color: #ffffff;
}

.n5-fee-top svg {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  fill: #ef233c;
  stroke: #ff7080;
  stroke-width: 1.5;
}

.n5-fee-top span,
.n5-fee-top strong {
  display: block;
  text-transform: uppercase;
  font-weight: 800;
}

.n5-fee-top span {
  font-size: 19px;
}

.n5-fee-top strong {
  font-size: 16px;
}

.n5-fee-bottom {
  padding: 18px 20px 17px;
  text-align: center;
}

.n5-fee-bottom p {
  margin-bottom: 4px;
  color: #20223d;
  font-size: 17px;
  font-weight: 800;
}

.n5-fee-bottom h3 {
  margin-bottom: 2px;
  color: #ee5096;
  font-size: 45px;
  line-height: 1;
  font-weight: 800;
}

.n5-fee-bottom span {
  color: #20223d;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .n5-hero-content h1 {
    font-size: 62px;
  }

  .n5-fee-card {
    left: 30%;
  }
}

@media (max-width: 1199px) {
  .n5-hero-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .n5-hero-content h1 {
    font-size: 52px;
  }

  .n5-hero-content h2 {
    font-size: 24px;
  }

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

  .n5-feature-list li {
    font-size: 17px;
  }

  .n5-form-card {
    padding: 24px 22px;
  }

  .n5-fee-card {
    width: 270px;
    left: 29%;
  }
}

@media (max-width: 991px) {
  .n5-hero-section {
    min-height: auto;
    padding: 45px 18px;
  }

  .n5-hero-row {
    min-height: auto;
    row-gap: 35px;
  }

  .n5-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .n5-tag,
  .n5-action-row {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

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

  .n5-feature-list {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .n5-form-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .n5-fee-card {
    position: static;
    margin: 28px auto 0;
  }
}

@media (max-width: 767px) {
  .n5-hero-content h1 {
    font-size: 43px;
  }

  .n5-hero-content h2 {
    font-size: 21px;
  }

  .n5-tag {
    font-size: 14px;
  }

  .n5-primary-btn,
  .n5-outline-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .n5-hero-section {
    padding: 35px 14px;
  }

  .n5-hero-content h1 {
    font-size: 36px;
  }

  .n5-hero-content p {
    font-size: 15px;
  }

  .n5-feature-list li {
    font-size: 15px;
  }

  .n5-form-card {
    padding: 22px 16px;
  }

  .n5-form-card h4 {
    font-size: 23px;
  }

  .n5-learners {
    align-items: flex-start;
  }

  .n5-fee-card {
    width: 100%;
  }
}
/* section two */
.n5-overview-section {
  padding: 0 0 34px;
  background: #ffffff;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
li,
span {
  font-family: "DM Sans", sans-serif;
}

.n5-feature-strip {
  margin-bottom: 28px;
  padding: 18px 10px;
  border: 1px solid #e9e4f2;
  border-radius: 0 0 13px 13px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #fbfaff;
  box-shadow: 0 10px 28px rgba(24, 20, 50, 0.06);
}

.n5-strip-item {
  min-height: 78px;
  padding: 0 14px;
  border-right: 1px solid #ded8e8;
  text-align: center;
  transition: transform 0.3s ease;
}

.n5-strip-item:last-child {
  border-right: 0;
}

.n5-strip-item:hover {
  transform: translateY(-4px);
}

.n5-strip-item svg {
  width: 24px;
  height: 24px;
  margin-bottom: 7px;
  fill: none;
  stroke: #541cae;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.n5-strip-item:hover svg {
  stroke: #ee5096;
}

.n5-strip-item h3 {
  margin-bottom: 4px;
  color: #111637;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
}

.n5-strip-item p {
  margin-bottom: 0;
  color: #111637;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.n5-section-heading {
  margin-bottom: 22px;
}

.n5-section-heading span {
  display: block;
  margin-bottom: 5px;
  color: #ee5096;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.n5-section-heading h2 {
  margin-bottom: 8px;
  color: #111637;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 700;
}

.n5-heading-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.n5-heading-decor i {
  width: 38px;
  height: 2px;
  border-radius: 20px;
  background: #d9d3e5;
}

.n5-heading-decor svg {
  width: 20px;
  height: 20px;
}

.n5-overview-content {
  max-width: 390px;
}

.n5-overview-content p {
  margin-bottom: 16px;
  color: #151936;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.n5-overview-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.n5-overview-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 9px;
  color: #151936;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.n5-overview-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #541cae;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.1 6.7 11 12.4 5' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  transition: background-color 0.3s ease;
}

.n5-overview-content li:hover::before {
  background-color: #ee5096;
}

.n5-learning-card {
  height: 100%;
  min-height: 178px;
  padding: 22px 14px 18px;
  border: 1px solid #e5dfef;
  border-radius: 10px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(24, 20, 50, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.n5-learning-card:hover {
  transform: translateY(-7px);
  border-color: rgba(238, 80, 150, 0.45);
  box-shadow: 0 16px 34px rgba(84, 28, 174, 0.13);
}

.n5-card-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #541cae, #7c42d2);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(84, 28, 174, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.n5-learning-card:hover .n5-card-icon {
  background: linear-gradient(135deg, #ee5096, #541cae);
  transform: scale(1.06);
}

.n5-card-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.japanese-letter {
  font-family: "Jost", sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.n5-learning-card h3 {
  margin-bottom: 9px;
  color: #111637;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.n5-learning-card p {
  margin-bottom: 0;
  color: #252a44;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

@media (max-width: 991px) {
  .n5-feature-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }

  .n5-strip-item:nth-child(3),
  .n5-strip-item:nth-child(6) {
    border-right: 0;
  }

  .n5-overview-content {
    max-width: 100%;
    text-align: center;
  }

  .n5-overview-content ul {
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
  }

  .n5-section-heading h2 {
    font-size: 31px;
  }
}

@media (max-width: 767px) {
  .n5-feature-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 8px;
  }

  .n5-strip-item {
    border-right: 0;
    min-height: 82px;
  }

  .n5-learning-card {
    min-height: 168px;
  }

  .n5-section-heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .n5-overview-section {
    padding-bottom: 26px;
  }

  .n5-feature-strip {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px;
  }

  .n5-strip-item h3 {
    font-size: 14px;
  }

  .n5-strip-item p {
    font-size: 11px;
  }

  .n5-section-heading h2 {
    font-size: 24px;
  }

  .n5-overview-content p {
    font-size: 13px;
  }

  .n5-overview-content li {
    font-size: 12px;
  }

  .n5-card-icon {
    width: 56px;
    height: 56px;
  }

  .japanese-letter {
    font-size: 30px;
  }

  .n5-learning-card {
    padding: 19px 11px 16px;
  }

  .n5-learning-card h3 {
    font-size: 14px;
  }

  .n5-learning-card p {
    font-size: 11px;
  }
}

/* section three */
.n5-details-section {
  padding: 28px 0 34px;
  background: #ffffff;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
span,
strong {
  font-family: "DM Sans", sans-serif;
}

.n5-course-details-box {
  position: relative;
  margin-bottom: 30px;
  padding: 40px 128px 26px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #26085d 0%, #541cae 48%, #220653 100%);
  box-shadow: 0 14px 32px rgba(84, 28, 174, 0.2);
  overflow: hidden;
}

.n5-course-details-box::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(238, 80, 150, 0.14);
}

.n5-details-heading {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.n5-details-heading span {
  width: 55px;
  height: 2px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.42);
}

.n5-details-heading h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.n5-details-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.n5-detail-item {
  min-height: 92px;
  padding: 8px 14px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

.n5-detail-item:last-child {
  border-right: 0;
}

.n5-detail-item svg {
  width: 31px;
  height: 31px;
  margin-bottom: 8px;
  fill: none;
  stroke: #ee5096;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.n5-detail-item:hover svg {
  transform: translateY(-4px);
  stroke: #ffffff;
}

.n5-detail-item h3 {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
}

.n5-detail-item p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.n5-jlpt-badge {
  position: absolute;
  right: 22px;
  top: 19px;
  z-index: 3;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffd84a, #f5a90b);
  border: 5px solid #f6c33d;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.n5-jlpt-badge::before,
.n5-jlpt-badge::after {
  content: "";
  position: absolute;
  bottom: -28px;
  width: 28px;
  height: 38px;
  background: #e73348;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.n5-jlpt-badge::before {
  left: 20px;
  transform: rotate(12deg);
}

.n5-jlpt-badge::after {
  right: 20px;
  transform: rotate(-12deg);
}

.n5-jlpt-badge div {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: #ffd84a;
  border: 3px solid #5b257e;
}

.n5-jlpt-badge span,
.n5-jlpt-badge strong {
  display: block;
  color: #17172f;
  font-family: "Jost", sans-serif;
  line-height: 1;
  font-weight: 700;
}

.n5-jlpt-badge span {
  font-size: 16px;
}

.n5-jlpt-badge strong {
  font-size: 36px;
}

.n5-learning-heading {
  margin-bottom: 16px;
}

.n5-learning-heading span {
  display: block;
  margin-bottom: 6px;
  color: #ee5096;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.n5-learning-heading h2 {
  margin-bottom: 8px;
  color: #111637;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 700;
}

.heading-flower {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.heading-flower i {
  width: 38px;
  height: 2px;
  border-radius: 20px;
  background: #d9d3e5;
}

.heading-flower svg {
  width: 20px;
  height: 20px;
}

.n5-outcome-box {
  border: 1px solid #e7e2ef;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(24, 20, 50, 0.05);
  overflow: hidden;
}

.n5-outcome-item {
  height: 100%;
  min-height: 118px;
  padding: 20px 18px 16px;
  border-right: 1px solid #e7e2ef;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.n5-outcome-item:hover {
  background: #fbf6ff;
  transform: translateY(-3px);
}

.no-line {
  border-right: 0;
}

.n5-outcome-item svg {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  fill: none;
  stroke: #541cae;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.n5-outcome-item:hover svg {
  stroke: #ee5096;
  transform: scale(1.08);
}

.n5-outcome-item p {
  max-width: 135px;
  margin: 0 auto;
  color: #111637;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

@media (max-width: 1199px) {
  .n5-course-details-box {
    padding-right: 110px;
  }

  .n5-detail-item {
    padding-left: 9px;
    padding-right: 9px;
  }

  .n5-detail-item h3 {
    font-size: 12px;
  }

  .n5-detail-item p {
    font-size: 11px;
  }

  .n5-jlpt-badge {
    width: 84px;
    height: 84px;
  }

  .n5-jlpt-badge div {
    width: 66px;
    height: 66px;
  }

  .n5-jlpt-badge strong {
    font-size: 31px;
  }
}

@media (max-width: 991px) {
  .n5-course-details-box {
    padding: 54px 24px 28px;
  }

  .n5-details-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

  .n5-detail-item {
    border-right: 0;
    min-height: 110px;
  }

  .n5-jlpt-badge {
    position: relative;
    right: auto;
    top: auto;
    margin: 22px auto 0;
  }

  .n5-learning-heading h2 {
    font-size: 31px;
  }

  .n5-outcome-item {
    border-right: 0;
    border-bottom: 1px solid #e7e2ef;
  }
}

@media (max-width: 767px) {
  .n5-course-details-box {
    border-radius: 10px;
  }

  .n5-details-heading span {
    width: 35px;
  }

  .n5-learning-heading h2 {
    font-size: 27px;
  }

  .n5-outcome-item {
    min-height: 112px;
  }
}

@media (max-width: 575px) {
  .n5-details-section {
    padding-top: 22px;
  }

  .n5-details-grid {
    grid-template-columns: 1fr;
  }

  .n5-detail-item {
    min-height: auto;
    padding: 14px 10px;
  }

  .n5-details-heading {
    gap: 8px;
  }

  .n5-details-heading span {
    width: 24px;
  }

  .n5-details-heading h2 {
    font-size: 12px;
  }

  .n5-learning-heading h2 {
    font-size: 24px;
  }

  .n5-outcome-item p {
    font-size: 11px;
  }
}
/* section four */
.nihongo-why-section {
  padding: 28px 0;
  background: #ffffff;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
li,
span {
  font-family: "DM Sans", sans-serif;
}

.nihongo-why-panel {
  position: relative;
  padding: 22px 24px 0;
  border-radius: 14px;
  background:
    radial-gradient(circle at 46% 48%, rgba(84, 28, 174, 0.12), transparent 25%),
    linear-gradient(90deg, #ffffff 0%, #fff5fb 52%, #ffffff 100%);
  overflow: hidden;
}

.nihongo-why-content {
  position: relative;
  z-index: 3;
  padding-bottom: 22px;
}

.nihongo-why-content h2 {
  margin-bottom: 17px;
  color: #111637;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.nihongo-why-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.nihongo-why-content li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #111637;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.nihongo-why-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #081344;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.1 6.8 11 12.4 5' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  transition: background-color 0.3s ease;
}

.nihongo-why-content li:hover::before {
  background-color: #ee5096;
}

.nihongo-student-visual {
  position: relative;
  min-height: 245px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.student-circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #541cae, #8e55db);
  z-index: 1;
}

.japan-bg-art {
  position: absolute;
  left: -8px;
  bottom: 0;
  width: 300px;
  height: auto;
  fill: none;
  stroke: rgba(84, 28, 174, 0.16);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  z-index: 1;
}

.sakura-small {
  position: absolute;
  left: 28px;
  top: 52px;
  width: 34px;
  height: 34px;
  z-index: 2;
  opacity: 0.8;
}

.nihongo-student-visual img {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 300px;
  display: block;
}

.why-stats-row {
  position: relative;
  z-index: 4;
  padding-bottom: 22px;
}

.why-stat-card {
  min-height: 105px;
  padding: 18px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: linear-gradient(135deg, #541cae, #6c2fc3);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(84, 28, 174, 0.16);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.why-stat-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #ee5096, #541cae);
  box-shadow: 0 16px 32px rgba(238, 80, 150, 0.22);
}

.why-stat-card svg {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #ee5096;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.why-stat-card:hover svg {
  stroke: #ffffff;
  transform: scale(1.08);
}

.why-stat-card h3 {
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 31px;
  line-height: 1;
  font-weight: 700;
}

.why-stat-card p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .nihongo-why-content h2 {
    font-size: 27px;
  }

  .nihongo-why-content li {
    font-size: 14px;
  }

  .why-stat-card {
    padding: 16px 12px;
  }

  .why-stat-card h3 {
    font-size: 27px;
  }
}

@media (max-width: 991px) {
  .nihongo-why-panel {
    padding: 28px 22px 0;
  }

  .nihongo-why-content {
    text-align: center;
  }

  .nihongo-why-content h2 {
    font-size: 31px;
  }

  .nihongo-why-content ul {
    max-width: 470px;
    margin: 0 auto;
    text-align: left;
  }

  .nihongo-student-visual {
    min-height: 310px;
  }

  .student-circle {
    width: 310px;
    height: 310px;
  }

  .nihongo-student-visual img {
    max-width: 330px;
  }

  .why-stat-card {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .nihongo-why-content h2 {
    font-size: 27px;
  }

  .nihongo-student-visual {
    min-height: 285px;
  }

  .student-circle {
    width: 280px;
    height: 280px;
  }

  .nihongo-student-visual img {
    max-width: 300px;
  }

  .why-stat-card h3 {
    font-size: 25px;
  }

  .why-stat-card p {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .nihongo-why-section {
    padding: 20px 0;
  }

  .nihongo-why-panel {
    padding: 24px 16px 0;
  }

  .nihongo-why-content h2 {
    font-size: 24px;
  }

  .nihongo-why-content li {
    font-size: 13px;
  }

  .nihongo-student-visual {
    min-height: 250px;
  }

  .student-circle {
    width: 245px;
    height: 245px;
  }

  .nihongo-student-visual img {
    max-width: 260px;
  }

  .japan-bg-art {
    width: 240px;
  }

  .why-stat-card {
    min-height: 96px;
    flex-direction: column;
    text-align: center;
    gap: 7px;
  }

  .why-stat-card svg {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .why-stat-card h3 {
    font-size: 22px;
  }

  .why-stat-card p {
    font-size: 11px;
  }
}

/* section six */
.journey-cta-footer {
  background: #ffffff;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p,
a,
span {
  font-family: "DM Sans", sans-serif;
}

.journey-cta-top {
  position: relative;
  padding: 16px 0;
  background:
    radial-gradient(circle at 13% 42%, rgba(238, 80, 150, 0.16), transparent 18%),
    radial-gradient(circle at 88% 42%, rgba(238, 80, 150, 0.16), transparent 18%),
    linear-gradient(135deg, #31086f 0%, #541cae 52%, #29045f 100%);
  overflow: hidden;
}

.journey-calendar-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(10, 7, 40, 0.22);
}

.journey-calendar-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: #541cae;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-cta-content h2 {
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 700;
}

.journey-cta-content p {
  max-width: 690px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.journey-demo-btn {
  min-height: 62px;
  padding: 16px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #ee5096;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(239, 35, 60, 0.24);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.journey-demo-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
  background: linear-gradient(135deg, #ee5096, #541cae);
  box-shadow: 0 18px 34px rgba(238, 80, 150, 0.26);
}

.journey-demo-btn svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  stroke: #ee5096;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.journey-demo-btn:hover svg {
  stroke: #541cae;
}

.journey-bg-left,
.journey-bg-right {
  position: absolute;
  top: 13px;
  width: 170px;
  height: auto;
  fill: none;
  stroke: rgba(238, 80, 150, 0.18);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-bg-left {
  left: -28px;
}

.journey-bg-right {
  right: 18px;
}

.journey-contact-bar {
  padding: 11px 0;
  background: #02092e;
}

.journey-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.journey-logo img {
  width: 170px;
  max-height: 52px;
  object-fit: contain;
}

.journey-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.journey-contact-link:hover {
  color: #ee5096;
}

.journey-contact-link svg {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.journey-contact-link:hover svg {
  stroke: #ee5096;
}

.journey-socials {
  display: flex;
  align-items: center;
  gap: 13px;
}

.journey-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0d63d8;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.journey-socials a:nth-child(2) {
  background: #d94c91;
}

.journey-socials a:nth-child(3) {
  background: #ef233c;
}

.journey-socials a:nth-child(4) {
  background: #0a66c2;
}

.journey-socials a:hover {
  transform: translateY(-4px);
  background: #ee5096;
}

.journey-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1199px) {
  .journey-cta-content h2 {
    font-size: 28px;
  }

  .journey-cta-content p {
    font-size: 17px;
  }

  .journey-demo-btn {
    font-size: 16px;
    padding: 15px 22px;
  }

  .journey-contact-link {
    font-size: 15px;
  }

  .journey-logo img {
    width: 145px;
  }
}

@media (max-width: 991px) {
  .journey-cta-top {
    text-align: center;
    padding: 28px 0;
  }

  .journey-calendar-icon {
    width: 84px;
    height: 84px;
  }

  .journey-calendar-icon svg {
    width: 48px;
    height: 48px;
  }

  .journey-cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .journey-contact-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .journey-contact-link {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .journey-cta-content h2 {
    font-size: 25px;
  }

  .journey-cta-content p {
    font-size: 15px;
  }

  .journey-demo-btn {
    width: 100%;
    max-width: 360px;
  }

  .journey-bg-left,
  .journey-bg-right {
    width: 120px;
    opacity: 0.65;
  }
}

@media (max-width: 575px) {
  .journey-cta-content h2 {
    font-size: 23px;
  }

  .journey-demo-btn {
    min-height: 56px;
    font-size: 14px;
  }

  .journey-contact-inner {
    gap: 16px;
  }

  .journey-contact-link {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

}
.n5-overview-section  .container{
  
        max-width: 1260px !important;
}
.n5-details-section .container{
  max-width: 1260px !important;
}
.journey-cta-top .container{
  max-width: 1260px !important;
}
.journey-contact-bar .container{
  max-width: 1260px !important;
}
/* privacy policy page */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

body{
    margin:0;
    padding:0;
    font-family:'Jost',sans-serif;
    background:#ffffff;
    color:#333;
}

.privacy-container{
    max-width:1000px;
    margin:60px auto;
    padding:0 20px;
}

.privacy-title{
    font-size:31px;
    font-weight:700;
    color:#541cae;
    margin-bottom:10px;
}

.last-updated{
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.privacy-intro{
    font-size:15px;
    font-weight:500;
    line-height:1.8;
    margin-bottom:30px;
}

.policy-section{
    margin-bottom:35px;
}

.policy-section h2{
    font-size:31px;
    font-weight:700;
    color:#541cae;
    margin-bottom:15px;
}

.policy-section h3{
    font-size:22px;
    font-weight:600;
    color:#222;
    margin:20px 0 10px;
}

.policy-section p{
    font-size:15px;
    font-weight:500;
    line-height:1.9;
}

.policy-section ul{
    margin:10px 0 0 20px;
}

.policy-section li{
    font-size:15px;
    font-weight:500;
    line-height:2;
}

.contact-box{
    background:#f8f5ff;
    border-left:5px solid #541cae;
    padding:25px;
    border-radius:10px;
    margin-top:40px;
}

.contact-box p{
    margin:8px 0;
    font-size:15px;
    font-weight:500;
}

.contact-box a{
    color:#541cae;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:768px){

    .privacy-container{
        margin:40px auto;
    }

    .privacy-title,
    .policy-section h2{
        font-size:24px;
    }

    .policy-section h3{
        font-size:18px;
    }

}


/*======================================
        BLOG WRAPPER
======================================*/

.jp-blog-wrapper{
    padding:40px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.jp-blog-heading{
    text-align:center;
    margin-bottom:60px;
}

.jp-blog-subtitle{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#f4ecff;
    color:#541cae;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.jp-blog-subtitle i{
    font-size:15px;
}

.jp-blog-heading h2{
    font-size:31px;
    font-weight:700;
    color:#1d1d1d;
    margin-bottom:18px;
    line-height:1.2;
}

.jp-blog-heading h2 span{
    color:#541cae;
}

.jp-blog-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-bottom:20px;
}

.jp-blog-divider span{
    width:70px;
    height:2px;
    background:#d6b4ff;
}

.jp-blog-divider i{
    font-size:22px;
    color:#541cae;
}

.jp-blog-heading p{
    max-width:720px;
    margin:auto;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/*======================================
            BLOG CARD
======================================*/

.jp-blog-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    transition:.35s;
    height:100%;
    border:1px solid #ececec;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.jp-blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

/*======================================
            IMAGE
======================================*/

.jp-blog-image{
    position:relative;
    overflow:hidden;
}

.jp-blog-image img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.jp-blog-card:hover .jp-blog-image img{
    transform:scale(1.08);
}

/*======================================
        CATEGORY BADGE
======================================*/

.jp-blog-category{
    position:absolute;
    top:18px;
    left:18px;
    background:#541cae;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
}

/*======================================
            CONTENT
======================================*/

.jp-blog-content{
    padding:28px;
}

.jp-blog-date{
    display:flex;
    align-items:center;
    gap:8px;
    color:#8a8a8a;
    font-size:14px;
    margin-bottom:18px;
}

.jp-blog-date i{
    color:#7b2cbf;
}

.jp-blog-content h3{
    font-size:20px;
    color:#222;
    line-height:1.45;
    font-weight:700;
    margin-bottom:15px;
    transition:.3s;
}

.jp-blog-card:hover .jp-blog-content h3{
    color:#541cae;
}

.jp-blog-line{
    width:70px;
    height:3px;
    background:#7b2cbf;
    border-radius:20px;
    margin-bottom:20px;
}

.jp-blog-content p{
    color:#666;
    line-height:1.9;
    font-size:16px;
    margin-bottom:25px;
}

/*======================================
        READ MORE BUTTON
======================================*/

.jp-blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#541cae;
    font-weight:700;
    transition:.3s;
}

.jp-blog-btn i{
    transition:.3s;
}

.jp-blog-btn:hover{
    color:#541cae;
}

.jp-blog-btn:hover i{
    transform:translateX(6px);
}
/*======================================
        FLOWER DECORATION
======================================*/

.jp-blog-flower{
    position:absolute;
    right:20px;
    bottom:18px;
    opacity:.08;
    pointer-events:none;
}

.jp-blog-flower i{
    font-size:55px;
    color:#7b2cbf;
}

/*======================================
        VIEW ALL BUTTON
======================================*/

.jp-blog-view-all{
    text-align:center;
    margin-top:50px;
}

.jp-blog-view-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#7b2cbf;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.35s ease;
    box-shadow:0 12px 30px rgba(123,44,191,.28);
}

.jp-blog-view-btn:hover{
    background:#5a189a;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(123,44,191,.35);
}

.jp-blog-view-btn i{
    transition:.3s;
}

.jp-blog-view-btn:hover i{
    transform:translateX(6px);
}

/*======================================
      BACKGROUND DECORATION
======================================*/

.jp-blog-wrapper::before{
    content:"";
    width:260px;
    height:260px;
    position:absolute;
    top:-120px;
    left:-120px;
    background:#f7efff;
    border-radius:50%;
}

.jp-blog-wrapper::after{
    content:"";
    width:220px;
    height:220px;
    position:absolute;
    right:-100px;
    bottom:-100px;
    background:#f4e8ff;
    border-radius:50%;
}

.jp-blog-wrapper .container{
    position:relative;
    z-index:2;
    width:1220px;
}

/*======================================
        TABLET
======================================*/

@media (max-width:991px){

    .jp-blog-wrapper{
        padding:70px 0;
    }
    .jp-blog-wrapper .container{
        width:100%;
    }

    .jp-blog-heading{
        margin-bottom:45px;
    }

    .jp-blog-heading h2{
        font-size:34px;
    }

    .jp-blog-image img{
        height:230px;
    }

    .jp-blog-content{
        padding:24px;
    }

    .jp-blog-content h3{
        font-size:21px;
    }

    .jp-blog-bottom-divider{
        margin:55px 0 35px;
    }

}

/*======================================
        MOBILE
======================================*/

@media (max-width:767px){

    .jp-blog-wrapper{
        padding:60px 0;
    }

    .jp-blog-heading h2{
        font-size:28px;
    }

    .jp-blog-heading p{
        font-size:15px;
        line-height:1.8;
        padding:0 10px;
    }

    .jp-blog-subtitle{
        font-size:13px;
        padding:8px 18px;
    }

    .jp-blog-divider span{
        width:45px;
    }

    .jp-blog-image img{
        height:220px;
    }

    .jp-blog-content{
        padding:22px;
    }

    .jp-blog-content h3{
        font-size:20px;
    }

    .jp-blog-content p{
        font-size:14px;
    }

    .jp-blog-btn{
        font-size:15px;
    }

    .jp-blog-view-btn{
        width:100%;
        justify-content:center;
        padding:15px 20px;
        font-size:15px;
    }

    .jp-blog-bottom-divider{
        gap:12px;
        margin:45px 0 30px;
    }

    .jp-blog-bottom-divider span{
        width:40px;
    }

    .jp-blog-wrapper::before,
    .jp-blog-wrapper::after{
        display:none;
    }

}

/*======================================
      SMALL MOBILE
======================================*/

@media (max-width:480px){

    .jp-blog-heading h2{
        font-size:24px;
    }

    .jp-blog-image img{
        height:200px;
    }

    .jp-blog-content{
        padding:20px;
    }

    .jp-blog-content h3{
        font-size:18px;
        line-height:1.5;
    }

    .jp-blog-date{
        font-size:13px;
    }

    .jp-blog-content p{
        font-size:14px;
        line-height:1.8;
    }

}
