:root {
  /* Primary colors */
  --main-color: #13488E;
  --sub-color: #E6821A;
  --sub-color-blue: #5386B9;
  --sub-color-gray: #C2D0E0;
  --meta-gray: #9F9F9F;
  --gray3: #898989;
  --bg-color: #FFF8ED;
  --bg-color-blue: #06397C;
  --black: #323232;
  --white: #ffffff;
   --bg-gradient-circle: radial-gradient(circle, #183152 0%, #001127 100%);
   --bg-gradient-linear: linear-gradient(to bottom, #2259AC 0%, #001739 100%);
}

/* fonts */
.font-zen{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
h4.font-zen{
    font-weight: bold;
}

.font-mon {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

/* .bird-flight-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3400px; 
  pointer-events: none;
  z-index: 500;
}

#bird {
  transform-box: fill-box;
  transform-origin: center;
} */

/* common */
html,body{
    box-sizing: border-box;
}
body{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}

/* main{
    padding-top: 80px;
}
#home_page main{
    padding-top: 0px;
}
@media (max-width: 768px) {
   main{
    padding-top: 0px;
   }
} */
.loader-wrap {
     width: 100%;
     height: 100vh;
     position: fixed;
     top: 0px;
     left: 0px;
     background: var(--bg-gradient-circle);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 99999999999;
    }
#lottie{
    width: 300px;
    height: 300px;
}
#introVideo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
#loader.hide {
  display: none !important;
}
.bird-stage {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

.bird-img {
    position: absolute;
    width: 140px;
    opacity: 0;
    transition: opacity .3s ease;
    transform-origin: center center;
}

.container{
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-800{
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 0 20px;
}

.img-fluid{
    width: 100%;
    height: auto;
    display: block;
}

.mt120{
    margin-top: 120px;
}
.mb120{
    margin-bottom: 120px;
}
@media (max-width: 768px) {
    .mt120 {
        margin-top: 60px;
    }
    .mb120 {
        margin-bottom: 60px;
    }
    #lottie{
    margin-top: -120px;
}
}

h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0px;
}

h2 {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

h3 {
  font-size: clamp(24px, 4vw, 40px); 
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  line-height: 1.8;
}

h4 {
  font-size: clamp(25px, 3.5vw, 35px); 
  font-weight: bold;
  letter-spacing: 0.05em;
}

h5 {
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.05em; 
  line-height: 1.8;
}

.lead1{
    font-size: clamp(18px, 4vw, 25px);
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.lead2{
    font-size: clamp(16px, 3.5vw, 20px);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.lead3{
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
}


.para-big{
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.para{
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 400;
    text-align: justify;
}
.caption{
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 400;
}
/* ========== NAVBAR BASE ========== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
}

/* Transparent default (desktop) */
#navbar {
  background-color: transparent;
}

/* Scroll state */
#navbar.scrolled {
  background-color: #ffffffed;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 60px;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;

}
.nav-links > * {
    margin-right: 20px;   
}
.nav-links > *:nth-last-child(2) {
    margin-right: 10px;
}

.nav-links > *:last-child {
    margin-right: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--sub-color);
}

/* ========== DROPDOWN STYLES ========== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  color: var(--main-color);
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(-180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;

  
  padding:  0px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
    position: relative;
  display: block;
  padding: 10px 20px;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  border-radius: 8px;
  width: auto;
  border: 1px solid var(--main-color);
  background-color: var(--white);
}
.dropdown-menu a::before{
 content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 1;
    margin-right: 10px;
}
.dropdown-menu a:hover {
  color: var(--sub-color);
}
.dropdown-menu a .btn-text {
    display: inline-block;
    transition: transform 0.2s ease;
    margin-left: 10px;
}

.dropdown-menu a:hover .btn-text {
    transform: translateX(5px);
}

.dropdown-menu a:hover::before{
    width: 12px;
    height: 12px;
    background-color: var(--sub-color);
}
/* Buttons */
.btn {
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn.blue {
  background-color: var(--main-color);
  color: var(--white);
  border: none;
}

.btn.blue:hover{
  background-color: var(--sub-color);
  color: var(--white);
}

.btn.outline {
  border: 2px solid var(--main-color);
  background: none;
  color: var(--main-color);
}

.btn.outline:hover {
  background-color: var(--white);
  border-color: var(--sub-color);
}

/* ========== MOBILE ========== */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  height: 3px;
  background-color: var(--main-color);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  right: 0;
  width: 100%;
  background-color: #ffffffed;
  padding: 30px 40px;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--main-color);
  font-weight: 600;
  font-size: 16px;
}

.mobile-menu.active {
  display: flex;
}

/* Smooth transition */
.menu-icon span {
  display: block;
  height: 3px;
  background-color: var(--main-color);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* When menu is open → transform spans */
.menu-icon.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  #navbar {
    background-color: #ffffffed !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .nav-links {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

  .nav-container {
    padding: 12px 20px;
  }
  
 
}
@media (max-width: 800px) {
 .bird-stage,.bird-wrap{
    display: none;
  }
}
/* main style */
.page-header{
    background-color: var(--main-color);
    color: var(--white);
    padding: 90px 0px 70px 0px;
}
.breadcrumb {
    font-size: 12px;
    padding-left: 3px;
    color: var(--white);
    font-weight: 400;
}
.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.btn-wrap {
    display: inline-block;
    color: var(--white);
}
.btn-center{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.btn-submit,
.btn-cta {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 40px 15px 50px;
    background: var(--main-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    transition: background-color 0.4s ease, padding-left 0.4s ease;
    min-width: 270px;
}
.btn-submit:visited,
.btn-cta:visited {
    color: var(--white);
}
.btn-dot{
    position: relative;
}
.btn-dot::before,
.btn-cta::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 1;
}
.btn-cta2:before{
    background-color: var(--main-color);
}
.btn-back:hover,
.btn-submit:hover,
.btn-cta:hover {
    background: var(--sub-color);
    padding-left: 60px;
    opacity: 1;
}
.btn-dot:hover::before,
.btn-cta:hover::before {
    width: 24px;
    height: 24px;
    left: 15px;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    letter-spacing: 0.1em;
}
.btn-footer:hover .btn-text,
.btn-cta:hover .btn-text {
    transform: translateX(5px);
}

/* footer */
footer {
    background: var(--bg-gradient-linear);
    color: var(--white);
    padding: 80px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav > ul > li > a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-nav > ul > li > a:hover {
    opacity: 0.7;
}

.footer-nav > ul > li > ul {
    list-style: none;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav .ul-child li{
    margin-left: 15px;
}

.footer-nav > ul > li > ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-nav > ul > li > ul li a:hover {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 45px 14px 50px;
    background: white;
    color: var(--main-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
}

.btn-footer::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: 2px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--main-color);
    border-radius: 50%;
    transition: all 0.2s ease;
}
.btn-footer.outline {
    background: transparent;
    color: var(--white);
    border: 2px solid white;
    padding: 12px 45px 12px 50px;
}
.btn-footer:hover {
    background: var(--sub-color);
    
    color: var(--white);
}
.btn-footer:hover::before{
    background-color: var(--white);
    width: 20px;
    height: 20px;
    margin-right: 15px;

}
.btn-footer.outline:hover{
    border-color: var(--sub-color);
}

.btn-footer.outline::before {
    background: white;
}



.footer-policy {
    margin-top: 10px;
}

.footer-policy a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 3px;
}

.footer-policy a:hover {
    opacity: 0.7;
}

.locality-box {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.locality-box p {
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.locality-logo{
    width: 100%;
    max-width: 200px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .east-logo{
    max-width: 300px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 40px;
    background: white;
    border-radius: 5px;
    position: relative;
}

.footer-logo .logo-text {
    display: flex;
    gap: 5px;
}

.footer-logo .logo-text .east {
    color: var(--white);
}

.footer-logo .logo-text .times {
    color: #7a9bc7;
}

.footer-contact {
    flex-shrink: 0;
}

.footer-contact p {
    font-size: 14px;
}

.footer-copyright {
    text-align: center;
    padding-top: 40px;
    font-size: 12px;
    opacity: 0.8;
}

.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: transparent;
    z-index: 999;
}

.scroll-top img {
    width: 50px;
    height: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-right {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .locality-box {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 50px 20px 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-right {
        flex-direction: column;
        width: 100%;
    }

    .btn-footer {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .locality-box {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .locality-logo{
        width: 100%;
        max-width: 200px;

    }
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .page-header{
        padding: 85px 0px 50px 0px;
    }
    h1{
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 15px 25px;
    }

    .footer-nav > ul {
        gap: 15px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-logo .logo-icon {
        width: 40px;
        height: 32px;
    }

    .footer-contact p {
        font-size: 11px;
    }
}




/* Page comming soon */
.content-center{
    text-align: center;
}
.blue-title{
    color: var(--main-color);
    font-size: clamp(35px, 6vw, 80px);
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}
.blue-title-jp{
    font-size: clamp(30px, 5vw, 60px);
    margin-bottom: 20px;
}
.desc-text{
    margin-bottom: 50px;
}

/* Front Page */
/* #introVideo {
    display: none; 
  } */
#front-page .sec-1{
    background-color: var(--bg-color);
    height: 100vh;
    position: relative;
}
#front-page .sec-1 video{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 90vh;
    min-height: 770px;
}
#front-page .hero-title{
    display: flex;
    position: relative;
    z-index: 2;
    padding-top: 170px;
}
#front-page .hero-title .main-catch{
    color: var(--main-color);
    font-size: clamp(28px, 4vw, 40px); 
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.8;
}
#front-page .hero-title .highlight{
    color: var(--sub-color);
    font-weight: bold;
}

#front-page .sec-2 {
    position: relative;
    overflow: visible;
}

#front-page .sec-2__bg {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    background: url('../img/top/origin-bg.jpg') no-repeat center;
    background-size: cover;
    z-index: 1;
}

#front-page .sec-2__inner {
    position: relative;
    z-index: 2;
    padding: 120px 0 160px;
    color: var(--white);
}

#front-page .sec-2__catch h5 {
    text-align: center;
    margin-bottom: 220px;
}

#front-page .sec-2__origin .lead2 {
    margin-bottom: 20px;
    font-weight: bold;
}

#front-page .sec-2__origin .origin-title {
    margin-bottom: 30px;
}

#front-page .sec-2__origin .content-wrap {
    width: 100%;
    max-width: 550px;
}

#front-page .sec-2__origin .para {
    text-align: justify;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
   #front-page .hero-title{
    padding-top: 80px;
   }
    #front-page .sec-2__catch h5 { margin-bottom: 150px; }
    #front-page .sec-2__inner { padding: 60px 0 80px; }
}
#front-page .sec-3{
    background-color: var(--main-color);
    padding-top: 150px;
}
#front-page .sec-3__content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1000px;
}

#front-page .sec-3__content .left-area,
#front-page .sec-3__content .right-area {
    width: calc(50% - 50px);
    box-sizing: border-box;
}

#front-page .sec-3__content .left-area img,
#front-page .sec-3__content .right-area img {
    width: 100%;
    height: auto;
    display: block;
}

#front-page .sec-3__content .right-area .para {
    margin-top: 50px;
    color: var(--white);
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
    #front-page .sec-3__content {
        flex-direction: column;
        gap: 30px;
        padding: 0px;
        padding-bottom: 50px;
    }

    #front-page .sec-3__content .left-area,
    #front-page .sec-3__content .right-area {
       width: 100%;
    }

    #front-page .sec-3__content .right-area .para {
        font-size: 16px;
        line-height: 1.6;
    }
    #front-page .sec-3{
        padding-top: 105px;
    }
}


#front-page .sec-4{
    position: relative;
}

#front-page .btn-special .btn-cta{
   position: absolute;
   bottom: 330px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--white);
    background-color: transparent;
}
#front-page .btn-special .btn-cta:hover{
    background-color: var(--sub-color);
    border-color: var(--sub-color);
}
.fim-section {
  position: relative;
  width: 100%;
  background: var(--main-color);
  overflow: visible;
  padding-bottom: 300px;
}
#front-page .sec-3__content .right-area .fim-sp{
    display: none;
}
.fim-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  
  #front-page .sec-3__content .right-area .fim-sp{
    display: block;
}
.fim-section{
    padding-bottom: 200px;
}
}

.fim-inner {
  width: 100%;
  max-width: 1000px;
  height: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

#fim-swiper {
  width: 100%;
  height: 100%;
}

#fim-swiper .swiper-wrapper {
  height: 100%;
}

#fim-swiper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.swiper-pagination-vertical.swiper-pagination-bullets, 
.swiper-vertical>.swiper-pagination-bullets{
    right: unset !important;
    left: -10px !important;
}
.fim-card {
  width: 100%;
  height: 80vh;
  max-height: 550px;
  background: var(--white);
  border-radius: 18px;
  padding: clamp(20px, 4vw, 48px);
}
.fim-card  .header {
            text-align: center;
        }

       .fim-card .logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
        }

        .fim-card .logo svg {
            width: 100%;
            height: 100%;
        }
.fim-card .header-title {
            color: #5B7DB1;
            font-size: 20px;
            font-weight: 600;
            font-style: italic;
        }

       
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 40px;
            margin-top: -30px;
        }
         .slide2 .content-wrapper{
             grid-template-columns: 1fr 1fr 1fr;
             gap: 10px;
             margin-top: 60px;
        }
        .slide2 .fim-card .fim-title{
            color: var(--white);
            background-color: #F08100;
           box-shadow:
            0 0 5px #F08100,
            0 0 10px #F08100,
            0 0 15px #F08100,
            0 0 20px #F08100;
            padding: 10px 20px;
            margin-bottom: 20px;
        }


.fim-card .header{
    margin-top: -80px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 100%;
    padding: 20px 50px;
    width: 100%;
    max-width: 300px;
    background-color: var(--white);
}
.fim-card .basis{
    max-width: 60px;
}
.fim-card .logo img{
    height: auto;
}
.slide2  .fim-card .header{
    background: linear-gradient(to top, #132842 0%, #001127 100%);
}
/* .fim-card  .text-content {
    padding: 20px;
} */

.fim-card .section-label {
    background: #587FCE;
    color: var(--white);
    padding: 5px 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.fim-card .section-label2{
    background-color: var(--main-color);
}
.fim-card .section-label3{
    background: #1C63C4;
}
.fim-card .fim-title {
    font-weight: 600;
    color: #587FCE;
}
.fim-card .fim-title2{
    color: var(--main-color);
}
.fim-card .fim-title3{
    color: #1C63C4;
}
#fim-section .slide2 .fim-card{
    background: var(--bg-gradient-circle);
    color: var(--white);
}
.image-content {
    position: relative;
    padding: 0px;
}
#fim-section .fim-pagination {
    display: flex;
    flex-direction: column;
    bottom: 6%;
    left: 50%;
    gap: 0px;
    margin-top: -20px;
    transform: translateX(-50%);
    width: max-content;
}





.scroll-indicator {
    text-align: center;
    color: #5386B9;
    font-size: 14px;
    font-weight: 600;
    margin-top: -50px;
    letter-spacing: 2px;
}
#fim-section .slide2 .fim-card{
    position: relative;
}
.slide2 .scroll-indicator{
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;

}
.slide3 .image-content img{
    max-width: 350px;
}
.scroll-arrow {
    margin-top: 0px;
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 10px;
    fill: #5386B9;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}



@media (max-width: 968px) {
    /* .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    } */

    /* .image-content {
        order: -1;
    } */

    .section-title {
        font-size: 32px;
    }

    .diagram {
        padding: 30px 20px;
    }

    .people-container {
        width: 250px;
        height: 250px;
    }

    .person {
        width: 50px;
        height: 50px;
    }

    .person:nth-child(1) { width: 65px; height: 65px; }
    .person:nth-child(2) { width: 60px; height: 60px; }
    .person:nth-child(4) { width: 70px; height: 70px; }
    .person:nth-child(5) { width: 55px; height: 55px; }

    
}


@media (max-width: 600px) {
    .section-title {
        font-size: 26px;
    }

    .section-label {
        font-size: 16px;
        padding: 10px 20px;
    }

    .top-box, .bottom-box {
        font-size: 16px;
        padding: 18px 20px;
    }

    .people-container {
        width: 200px;
        height: 200px;
    }
}





.fim-tag {
  margin: 0 0 0.25em;
  font-size: clamp(12px, 2vw, 14px);
  color: #3b82f6;
}

.fim-title {
  margin: 0 0 0.5em;
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.25;
}

.fim-text {
  margin: 0;
  font-size: clamp(14px, 2.6vw, 16px);
  line-height: 1.7;
  color: var(--black);
}

.fim-pagination {
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
}

.fim-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  opacity: 1;
}

.fim-pagination .swiper-pagination-bullet-active {
  background: var(--sub-color);
}



#front-page .sec-5{
    background-color: var(--bg-color);
    margin-top: -200px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding: 100px 0px 150px;
    position: relative;
    z-index: 9;
}

.sec-title-big{
    font-size: clamp(50px, 5vw, 60px);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--main-color);
}


#front-page .sec-5__header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 50px;
}
.lead30{
     font-size: clamp(18px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: 0.05em; 
  line-height: 1.8;
  color: var(--main-color);
}

#front-page .section-title h5{
    color: var(--main-color);
    margin-left: 35px;
    font-weight: bold;
}
/* FIM Steps Section */
.fim-steps-section{
    margin-bottom: 100px;
}

#front-page .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    position: relative;
}

#front-page .section-title::before {
    content: '';
    position: absolute;
    
    width: 25px; 
    height: 25px; 
    background-image: url('../img/top/fim-arrow2.svg');
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;
}


.fim-steps-section .steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

#front-page .sec-5 .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    gap: 20px;
}


    #front-page .sec-5 .step-item  img{
    max-width: 140px;
    }

/* Arrow between steps */
.fim-steps-section .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -26px;
    top: 60px;
    width: 22px; 
    height: 15px; 
    background-image: url('../img/top/fim-arrow.png');
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;
}


.fim-steps-section .step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1.6;
    letter-spacing: 1.5px;
}

@media (max-width: 800px), (max-height: 750px) {
    .fim-section{
        height: auto !important;
    }
    .fim-steps-section .step-title{
        text-align: left;
    }
    #front-page .sec-5{
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 50px 0px 105px;
    }
   
    #front-page .sec-5__header{
        flex-direction: column;
        gap: 0px;
    }
    .fim-card{
        height: auto;
    }

    #front-page .sec-5 .step-item{
        flex-direction: row;
    }
    #front-page .sec-5 .step-item img{
        max-width: 90px;
    }

    #fim-swiper {
        overflow: visible !important;
        height: auto !important;
    }

    #fim-swiper .swiper-wrapper {
        display: block !important;
        transform: none !important;
    }

    #fim-swiper .swiper-slide {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 50px;
    }

    .fim-pin {
        height: auto !important;
        position: relative !important;
    }

    #fim-pagination {
        display: none !important;
    }
    .fim-card{
        height: auto;
        max-height: unset;
        margin-bottom: 50px;
    }
    .content-wrapper{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .scroll-indicator{
        display: none;
    }
    .fim-card .header{
        max-width: 250px;
    }
    #front-page .sec-3__content{
        padding-bottom: 150px;
    }
    .fim-card .header{
        margin-top: -80px;
    }
    .slide2 .fim-card .header{
        background: linear-gradient(to top, #0d1a2c 0%, #001127 100%);
    }
    #front-page .btn-special .btn-cta{
        bottom: 300px;
    }
    .slide2 .content-wrapper .image-content:nth-of-type(2) {
        order: 1;
    }
    .slide2 .content-wrapper .image-content:nth-of-type(3) {
        order: 3;
    }
    .slide2 .content-wrapper .text-content {
        order: 2;
    }

    .slide2 .image-content img{
        max-width: 170px;
    }
    .slide2 .content-wrapper{
        margin-top: 0px;
    }
    .slide2 .fim-card .fim-title{
        max-width: 275px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 30px auto 20px auto;
    }
    .fim-card .image-content img{
        max-width: 400px;
    }
}
@media (max-width: 800px) {
 .fim-steps-section .steps-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .step-item::after {
        
        right: auto !important;
        left: 50% !important;
        top: auto !important;
        bottom: -40px !important;
        transform: translateX(-50%) rotate(90deg) !important;
    }

    .step-item:last-child::after {
        content: none !important;
    }
}
@media (max-width: 600px) {
     .fim-card .header{
        margin-top: -50px;
    }
    
}




#front-page .sec-5 .main-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

#front-page .sec-5 .left-content {
    flex: 1;
    max-width: 540px;
}

#front-page .sec-5 .header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}
#front-page .sec-5 .header .header-title{
    color: var(--main-color);
}
#front-page .sec-5 .header-icon {
    width: 100px;
    height: auto;
}

#front-page .sec-5 .para{
    margin-bottom: 20px;
}

#front-page .sec-5 .services {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

#front-page .sec-5 .service-item {
    text-align: center;
    flex: 1;
}

#front-page .sec-5 .service-icon {
    max-width: 490px;
    margin-bottom: 20px;
    object-fit: contain;
}
#front-page .sec-5 .service-chart{
  width: 100%;
  margin-top: 20px;

}
#front-page .sec-5 .service-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
}

#front-page .sec-5 .more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px 5px 0px;
    width: 100%;
    height: 45px;
    max-width: 120px;
    min-width: 120px;
    border: 2px solid var(--main-color);
    border-radius: 30px;
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

#front-page .sec-5 .more-btn:hover {
    background: var(--sub-color);
    color: var(--white);
    border: 1px solid var(--sub-color);
}

#front-page .sec-5 .more-btn::before {
    content: "● ";
    margin-right: 8px;
    font-size: 14px;
    margin-top: 3px;
}
#front-page .sec-5 .more-btn:hover::before {
    color: var(--white);
}
#front-page .sec-5 .bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 80px;
}

#front-page .sec-5 .card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
}

#front-page .sec-5 .card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
#front-page .sec-5 .card-header .card-title{
    color: var(--main-color);
    font-weight: 600;
}
#front-page .sec-5 .card-icon {
    width: 90px;
    height: auto;
}

#front-page .sec-5 .card-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

#front-page .sec-5 .card-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

#front-page .sec-5 .card-footer {
    text-align: right;
}
#front-page .sec-5 .card-footer-main{
    text-align: unset;
}
@media (max-width: 1200px) {
    #front-page .sec-5 .header-title {
        font-size: 36px;
    }

    #front-page .sec-5 .services {
        gap: 20px;
    }

    #front-page .sec-5 .service-title {
        font-size: 24px;
    }

   
}

@media (max-width: 968px) {
    #front-page .sec-5 .main-card {
        flex-direction: column;
        padding: 30px;
    }

    #front-page .sec-5 .left-content {
        max-width: 100%;
    }

  

    #front-page .sec-5 .services {
        flex-direction: column;
        align-items: center;
    }

    #front-page .sec-5 .bottom-section {
        grid-template-columns: 1fr;
    }

    #front-page .sec-5 .card {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    #front-page .sec-5 .main-card {
        padding: 20px;
    }

    #front-page .sec-5 .header-icon {
        width: 100px;
    }

    #front-page .sec-5 .header-title {
        font-size: 20px;
    }

    #front-page .sec-5 .description {
        font-size: 16px;
    }

#front-page .sec-5 .services{
    display: none;
}
    #front-page .sec-5 .service-title {
        font-size: 20px;
    }

    #front-page .sec-5 .card {
        padding: 20px;
    }

    #front-page .sec-5 .card-icon {
        width: 70px;
    }

  
    #front-page .sec-5 .card-description {
        font-size: 16px;
    }

    #front-page .sec-5 .more-btn {
        font-size: 16px;
        padding: 10px 30px;
    }
    #front-page .sec-5 .bottom-section{
        margin-bottom: 50px;
    }
    #front-page .sec-5 .card-bottom{
        flex-direction: column;
        align-items: flex-start;
    }
    #front-page .sec-5 .para{
        margin-bottom: 0px;
    }
    #front-page .sec-5 .card-footer{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}

#front-page .sec-6{
    padding: 150px 0px;
}
.news-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
  justify-content: space-between;
}

.news-left {
  flex: 0 0 160px; 
}

.news-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  position: relative;
}

.news-right {
  flex: 1;
  max-width: 600px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px; /* spacing between items */
}

.news-item {
  padding-bottom: 16px;
  border-bottom: 1px solid #C2D0E0;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--meta-gray);
}

.news-date {
  color: var(--meta-gray);
}

.news-category {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  color: var(--main-color);
  line-height: 1.4;
}

.news-item-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
  position: relative;
    padding-right: 30px;
}
.news-item-title:after{
    position: absolute;
    right: 20px;
    content: '●';
    top: 50%;
  transform: translateY(-50%);
  transform: translateY(-50%) scale(1);
    color: var(--main-color);
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.news-item-title a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.news-item-title a:hover {
  color: var(--sub-color);
}
.news-item-title:hover::after {
  transform: translateY(-50%) scale(2); 
  color: var(--sub-color);
}


@media (max-width: 768px) {
  .news-section {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 56px;
  }
  .news-left {
    flex: none;
  }
  .news-title {
    font-size: 28px;
  }
  .news-right{
    width: 100%;
    max-width: 100%;
  }
  #front-page .sec-6{
    padding: 105px 0px;
  }
}


/* ========== site policy ========== */
.sp-content__box{
    margin-bottom: 50px;
}
.sp-content__box h6{
     width: 100%;
     border-bottom: 2px solid var(--main-color);
     padding-bottom: 8px;
     margin-bottom: 20px;
     color: var(--main-color);
}

.numbered-list{
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 20px;
}
.numbered-list2 {
  counter-reset: item;
  margin-left: 15px;
  padding-left: 0;
  list-style: none;
}

.numbered-list2 li {
  counter-increment: item;
  position: relative;
  padding-left: 2em;
  text-indent: -3em;
}

.numbered-list2 li::before {
  content: "（" counter(item) "）";
  position: relative;
}
.mt150{
    margin-top: 150px;
}
.text-blue {
    color: var(--main-color);
    margin-bottom: 10px;
}



/* ========== Page news ========== */
/* Tab Navigation */
.news-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
}

.news-tab {
    padding: 8px 20px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}
.news-tabs .search-category{
    margin-right: 10px;
    font-size: 16px;
}
.news-tabs .btn-cat-wraps{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.news-tab:hover {
    background: var(--main-color);
    color: var(--white);
}

.news-tab.active {
    background: var(--main-color);
    color: var(--white);
}

.news-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--black);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#page-news .news-item {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-thumbnail {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    overflow: hidden;
    border-radius: 4px;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-item:hover .news-thumbnail img {
    transform: scale(1.05);
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.news-date {
    font-size: 14px;
    color: var(--meta-gray);
}

.news-category {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    color: var(--main-color);
    line-height: 1.4;
}

.news-item-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
    position: relative;
    padding-right: 30px;
}

.news-item-title a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}

.news-item-title a:hover {
    color: var(--sub-color);
}

.news-item-title::after {
    position: absolute;
    right: 10px;
    content: '●';
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    font-size: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.news-item:hover .news-item-title::after {
    transform: translateY(-50%) scale(1.8);
    color: var(--sub-color);
}

@media (max-width: 768px) {
    .news-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    .news-tabs .search-category{
        display: block;
    }
    .news-tab {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .news-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .news-item-title {
        font-size: 15px;
    }
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--sub-color-gray);
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagination-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.pagination-arrow:hover {
    background: var(--main-color);
    color: var(--white);
    border-color: var(--main-color);
}

.pagination-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-number {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-number:hover {
    background: var(--main-color);
    color: var(--white);
    border-color: var(--main-color);
}

.pagination-number.active {
    background: var(--main-color);
    color: var(--white);
    border-color: var(--main-color);
}

.pagination-dots {
    padding: 0 8px;
    color: #999;
    font-size: 14px;
}


@media (max-width: 640px) {
    .pagination-container {
        gap: 4px;
    }
    
    .pagination-arrow {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .pagination-number {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .pagination-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* ========== Page single ========== */
#page-single{
    background-color: var(--bg-color);
}
#page-single .page-single__content{
    padding: 100px 0px 150px 0px;
}
#page-single .single-post__wrap{
    background-color: var(--white);
    border-radius: 30px;
    padding: 50px 0px 80px;
}

#page-single .news-category{
    margin-right: 10px;
}
#page-single  button{
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}
#page-single .page-single__content h1{
    font-size: clamp(18px, 4vw, 25px);
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
#page-single .meta-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
#page-single .thumbnail-wrap img{
    margin-bottom: 50px;
}
#page-single .page-single__content h2{
     width: 100%;
     border-bottom: 2px solid var(--main-color);
     padding-bottom: 8px;
     margin-bottom: 20px;
     color: var(--main-color);
     font-size: clamp(18px, 4vw, 25px);
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.05em;
}
#page-single .page-single__content p{
     font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 400;
}
#page-single .page-single__content h3 {
  padding-left: 1em;
  color: var(--main-color);
  border-left: 8px solid var(--main-color);
  font-size: clamp(16px, 3.5vw, 20px);
font-weight: 600;
line-height: 1.8;
letter-spacing: 0.05em;
  margin: 2em 0 1em 0;
}

#page-single .page-single__content h4 {
  padding-left: 1.2em;
   color: var(--main-color);
  position: relative;
   font-size: clamp(14px, 3vw, 18px);
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.05em;
  margin: 1.5em 0 1em 0;
}

#page-single .page-single__content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  transform: translateY(-50%);
  width: 0.7em;
  height: 0.7em;
  background-color: var(--main-color);
  border-radius: 50%;
}

#page-single .page-single__content strong{
    font-weight: bold;
}
#page-single .page-single__content a{
    text-decoration: underline;
    color:var(--sub-color-blue);
    word-break: break-word;
}
#page-single .page-single__content .btn-wrap a{
    color: var(--white);
    text-decoration: none;
    margin-top: 80px;
}
#page-single .page-single__content ul {
    padding-left: 1.5em;
    margin: 1em 0;
}

#page-single .page-single__content ul {
    padding-left: 1.5em;
    margin: 1em 0;
}

#page-single .page-single__content ul li {
    list-style: none;
    position: relative;
    margin-left: 0;
    padding-left: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.6;
    font-size: 14px;
}

#page-single .page-single__content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.5em;
    height: 0.5em;
    background-color: var(--sub-color);
    border-radius: 50%;
}

#page-single .page-single__content ul li:last-child {
    margin-bottom: 0;
}
#page-single .wp-caption-text{
    text-align: center;
    font-size: 14px;
    color: var(--gray3);
    font-weight: normal;
}
#page-single .post-content{
    margin-bottom: 80px;
}
#page-single .share-buttons{
    display: flex;
    align-items: center;
    gap: 10px;

}
#page-single .share-button .copy-icon{
    width: 100%;
    max-width: 150px;
}
#page-single .share-button .social-icon{
    width: 100%;
    max-width: 40px;
}


.gallery .gallery-item img {
    width: 100%;
    height: 300px; 
    object-fit: cover;
}


.gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1; 
}


#page-single .block-blue{
    background-color: #EBF4FA;
    color: var(--black);
    padding: 50px;
    border-radius: 20px;
    margin: 50px 0px;
}



@media (max-width: 640px) {
 #page-single .page-single__content{
    padding: 70px 0px;
 }
 #page-single .single-post__wrap{
    padding: 35px 0px 50px;
 }
 #page-single .page-single__content .btn-wrap a{
    margin-top: 50px;
 }
 #page-single .block-blue{
    padding: 30px;
}
}
/* ========== Page company ========== */
#page-company .msg-title{
    font-size: clamp(32px, 5vw, 60px);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
   z-index: 9;
    position: relative;
    color: var(--main-color);
}
#page-company .ceo-sign{
    text-align: right;
    margin-top: 50px;
}
#page-company .ceo-sign .para{
    font-size: 16px;
    text-align: right;
}
#page-company .c-img{
    margin-top: -40px;
    margin-bottom: 80px;
}

#page-company .c-sec-title{
    margin-bottom: 50px;
    color: var(--main-color);
}


#page-company .sec-company2{
    background-color: var(--bg-color);
    padding: 100px 0px;
}
#page-company .sec-company2 .container{
    background-color: var(--white);
    border-radius: 50px;
    padding: 80px 0px;
}
#page-company .timeline {
    position: relative;
}
#page-company .blue-title-jp{
     font-size: clamp(25px, 4vw, 50px);
     margin-bottom: 50px;
}

#page-company .timeline::before {
    content: '';
    position: absolute;
    left: 130px;
    top: 10px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--sub-color-blue) 0%, #357abd 100%);
}

#page-company .timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s ease forwards;
}

#page-company .timeline-item:nth-child(1) { animation-delay: 0.1s; }
#page-company .timeline-item:nth-child(2) { animation-delay: 0.2s; }
#page-company .timeline-item:nth-child(3) { animation-delay: 0.3s; }
#page-company .timeline-item:nth-child(4) { animation-delay: 0.4s; }
#page-company .timeline-item:nth-child(5) { animation-delay: 0.5s; }
#page-company .timeline-item:nth-child(6) { animation-delay: 0.6s; }
#page-company .timeline-item:nth-child(7) { animation-delay: 0.7s; }
#page-company .timeline-item:nth-child(8) { animation-delay: 0.8s; }
#page-company .timeline-item:nth-child(9) { animation-delay: 0.9s; }
#page-company .timeline-item:nth-child(10) { animation-delay: 1s; }
#page-company .timeline-item:nth-child(11) { animation-delay: 1.1s; }
#page-company .timeline-item:nth-child(12) { animation-delay: 1.2s; }
#page-company .timeline-item:nth-child(13) { animation-delay: 1.3s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#page-company .timeline-item .year {
    font-size: clamp(20px, 3.5vw, 35px); 
    font-weight: bold;
    letter-spacing: 0.05em;
    color: var(--sub-color-blue);
    min-width: 130px;
    text-align: left;
    flex-shrink: 0;
    margin-top: -6px;
}

#page-company .timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--sub-color);
    border-radius: 50%;
    position: absolute;
    left: 123px;
    top: 10px;
    z-index: 2;
    
    transition: all 0.3s ease;
}

#page-company .timeline-content {
    margin-left: 30px;
    display: flex;
    flex: 1;
    transition: all 0.3s ease;
    padding-top: 5px;
}

#page-company .timeline-content .date {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    color: var(--sub-color-blue);
    font-weight: 600;
    letter-spacing: 0.1em;
    width: 70px;
    flex-shrink: 0;
    margin-top: 3px;
}

#page-company .timeline-content .event {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    #page-company .blue-title-jp{
        margin-bottom: 35px;
    }
   #page-company .sec-company2{
    padding: 50px 20px;
   }
#page-company .timeline-item .year{
    min-width: 80px;
    margin-top: 4px;
}
#page-company .timeline-item{
    margin-bottom: 10px;
}
#page-company .timeline::before{
    left: 80px;
}
#page-company .timeline-dot{
    left: 73px;
}
   #page-company .timeline-content .date{
    width: 50px;
   }
   #page-company .sec-company2 .container{
    padding: 30px 0px;
   }
   #page-company .sec-company2 .container{
    border-radius: 30px;
   }
   #page-company .c-img{
    margin-top: -25px;
    margin-bottom: 50px;
   }
   #page-company .c-sec-title{
    margin-bottom: 30px;
   }
}

@media (max-width: 480px) {
   #page-company .timeline-content{
    flex-direction: column;
   }
   #page-company .timeline-content .event{
    font-size: 14px;
   }
}
#page-company .mb80{
    margin-bottom: 80px;
}
#page-company .blue-title-jp2{
    margin-bottom: 0px;
}
#page-company .subtitle{
    font-size: 16px;
    color: var(--main-color);
    font-weight: 600;
}

#page-company .news-cta {
    max-width: 500px;
    background-color: var(--white);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin: 50px auto;
    border-radius: 20px;
}
@media (max-width: 480px) {
   #page-company .news-cta{
    margin:35px auto ;
   }
   #page-company .mb80{
    margin-bottom: 50px;
   }
 
}
#page-company .left-area {
    flex: 1;
}
#page-company .news-cta h2 {
    font-size: clamp(32px, 5vw, 60px);
  font-weight: bold;
  line-height: 1.3;
  color: var(--main-color);
}
#page-company .para-big {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    margin-top: -20px;
    color: var(--black);
}

#page-company .right-area {
    display: flex;
   align-items: flex-end;
    justify-content: center;
    align-self: stretch;
}

#page-company .circle {
    width: 56px;
    height: 56px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    position: relative;
}

#page-company .inner-circle {
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
}
#page-company .news-cta:hover{
    background-color: var(--sub-color);
}
#page-company .news-cta:hover .para-big,
#page-company .news-cta:hover h2 {
    color: var(--white);
}
#page-company .news-cta:hover .circle {
    background-color: var(--white);
}

#page-company .news-cta:hover .inner-circle {
    transform: scale(1.6);
    background-color: var(--sub-color);
}
#page-company .section-title {
            font-size: clamp(18px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.05em; 
  line-height: 1.8;
    color: var(--main-color);
    margin-bottom: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::before {
    content: '';
    width: 26px;
    height: 26px;
    background: var(--main-color);
    flex-shrink: 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.client-item{
font-size: 16px;
margin-bottom: 5px;
}


.prefecture-section {
    margin-top: 40px;
}

.prefecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 15px;
}



.region-title {
    font-size: 16px;
    font-weight: 600;
}

.region-content {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

.pref-grid__item{
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .prefecture-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
}

@media (max-width: 480px) {
.section {
    margin-bottom: 40px;
}

}

.info-table {
    width: 100%;
    margin-bottom: 40px;
    font-size: 16px;
}

.info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0;
    align-items: stretch;
}

.info-label {
    font-weight: 700;
    padding: 25px 20px;
    border-bottom: 2px solid var(--main-color);
}

.info-content {
    padding: 25px 20px;
    color: var(--black);
    line-height: 1.8;
    border-bottom: 2px solid var(--sub-color-gray);
}

.info-content .bullet {
    display: block;
    position: relative;
    padding-left: 20px;
    margin: 8px 0;
}

.info-content .bullet::before {
    content: '●';
    position: absolute;
    left: 0;
}

.map-section {
    margin-top: 50px;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 25px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.access-info {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.access-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.access-item::before {
    content: '■';
    font-size: 1.2em;
    color: var(--black);
}

@media (max-width: 768px) {
    

    .info-row {
        grid-template-columns: 1fr;
    }

    .info-label {
        padding: 15px 10px;
        border-bottom: none;
    }

    .info-content {
        padding: 0px 10px 15px 10px;
    }

    .map-container {
        height: 350px;
    }

    .header {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    

    .info-label {
        padding: 12px 8px;
    }

    .info-content {
       padding: 0px 8px 10px 8px;
    }

    .map-container {
        height: 300px;
    }

    .access-item {
        font-size: 14px;
    }
}


#page-members .profile-card {
    display: flex;
    gap: 30px;
    padding: 20px;
    margin-bottom: 80px;
}

#page-members .profile-image {
    flex-shrink: 0;
}

#page-members .profile-image img {
    width: 100%;
    max-width: 310px;
    height: auto;
    display: block;
}

#page-members .profile-content {
    flex: 1;
}

.profile-name {
    font-weight: 600;
    margin-bottom: 5px;
}

#page-members .profile-name-en {
    font-size: 14px;
    color: var(--sub-color-blue);
    margin-bottom: 20px;
}

.profile-title {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 600;
}

.profile-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 400;
}

@media (max-width: 768px) {
    #page-members .profile-card{
        padding: 0px;
    }
    .profile-card {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .profile-image img {
        width: 180px;
        margin: 0 auto;
    }

    .profile-name {
        font-size: 24px;
    }

    
}

@media (max-width: 480px) {
    .profile-card {
        padding: 10px;
    }

    .profile-image img {
        width: 150px;
    }

    .profile-name {
        font-size: 35px;
    }

    /* .profile-title,
    .profile-text {
        font-size: 12px;
    } */
}

/* Contact Form Wrapper */

#page-contact{
    background-color: var(--bg-color);
}
#page-contact .page-contact__content{
    padding: 100px 0px;
}
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}





.wpcf7-form {
    background-color: transparent;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    padding: 40px 20px;
    background-color: transparent;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--sub-color-gray);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--main-color);
    color: var(--white);
}

.step.completed .step-number {
    background-color: var(--main-color);
    color: var(--white);
}

.step-label {
    font-size: 14px;
    color: var(--sub-color-gray);
}
.step.completed .step-label,
.step.active .step-label {
    color: var(--main-color);
    font-weight: bold;
}

/* Connector line between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(100% + 0px);
    width: 40px;
    height: 2px;
    background-color: var(--sub-color-gray);
}

.step.completed:not(:last-child)::after {
    background-color: var(--main-color);
}

/* Form Steps */
.form-step {
    display: none;
    background-color: transparent;
    padding: 0;
}

.form-step.active {
    display: block;
}

/* Form Rows - Grid Layout */
.form-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: start;
    gap: 0 30px;
    margin-bottom: 0;
    padding: 25px 0px;
    border-bottom: 1px solid var(--sub-color-gray);
}

.form-row:first-child {
    border-top: 1px solid var(--main-color);
    position: relative;
}
.form-row:first-child:before{
    content: '';
    position: absolute;
    top: -1.5px;
    left: 0;
    width: 100%;
    max-width: 200px;
    height: 2px;
    background-color: var(--sub-color);
}
.form-row:has(textarea) {
    border-bottom: none;
}
.form-row > p {
    margin: 0 !important;
    padding: 0 !important;
}

.form-row label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
    padding-top: 0;
    grid-column: 1;
}

.required-badge {
    display: inline-block;
    background-color: var(--sub-color);
    color: var(--white);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 2px;
    margin-left: 8px;
    font-weight: normal;
    vertical-align: middle;
}

/* Form control wrapper */
.form-row > span.wpcf7-form-control-wrap {
    grid-column: 2;
    display: block;
}

/* Form Controls */
.form-control,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background-color: var(--white);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.helper-text {
    display: block;
    font-size: 12px;
    color: var(--sub-color);
    margin-top: 8px;
    grid-column: 2;
}
.form-control:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--main-color);
}

.form-control::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
    color: #999;
    font-size: 14px;
}

.form-textarea {
    min-height: 200px;
    resize: vertical;
    font-family: inherit;
}


.form-select {
    width: 100%;
    max-width: 300px;
    cursor: pointer;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
  -webkit-appearance: none; 
  -moz-appearance: none;    
  appearance: none;         
  background: white url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="5"><polygon points="0,0 10,0 5,5" fill="black"/></svg>') no-repeat right 10px center;
  background-size: 10px 10px; 
  padding-right: 30px; 

}

.wpcf7-not-valid {
    border: 2px solid var(--sub-color);
}
@media screen and (max-width: 768px) {
    .form-row:first-child:before{
        max-width: 100px;
    }
    .form-row {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 0px;
    }
    
    .form-row label {
        grid-column: 1;
        margin-bottom: 10px;
    }
    
    .form-row > span.wpcf7-form-control-wrap {
        grid-column: 1;
    }
    
    .helper-text {
        grid-column: 1;
    }
    #page-contact .page-contact__content{
        padding: 70px 0px;
    }
}
/* Privacy Check */
.privacy-check {
    margin: 0 auto;
    padding: 55px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-check .wpcf7-list-item {
    margin: 0;
}

.privacy-check label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    margin-left: 0;
    font-weight: bold;
    margin-bottom: 0;
}

.privacy-check input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--sub-color); 
  border-radius: 4px;
  margin-right: 5px;
  margin-bottom: -5px;
  position: relative;
  cursor: pointer;
}

/* Check mark dikhe jab checked ho */
.privacy-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid var(--white);       
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  
}


.privacy-check a {
    color: var(--sub-color-blue);
    font-weight: 500;
    text-decoration: underline;
}

/* Buttons */
.form-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
    padding: 40px 30px;
}

.btn-confirm,
.btn-submit,
.btn-back,
.btn-home {
    padding: 15px 50px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: left;
}



.btn-back {
    background-color: var(--white);
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

 .btn-back:hover {
    color: var(--white);
    border: 1px solid var(--sub-color);
    background-color: var(--sub-color);
} 
.btn-back:hover::before{
    background-color: var(--white);
}

/* Confirm Section — clean border alignment */
.confirm-data {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  background-color: transparent;
  
}

.confirm-row {
  display: contents;
  border-top: 1px solid var(--sub-color-gray);
  border-bottom: 1px solid var(--sub-color-gray);
}

.confirm-label,
.confirm-value {
  padding: 25px 0;
  font-size: 14px;
  color: var(--black);
}

.confirm-label {
  font-weight: 600;
}

.confirm-message{
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 50px;
}

/* Ensure spacing between columns */
.confirm-value {
  padding-left: 30px;
  white-space: pre-wrap;
  word-break: break-word;
}

.confirm-label .required-badge {
  margin-left: 8px;
}
.wpcf7 form.sent .wpcf7-response-output{
    display: none;
}
/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .confirm-data {
    grid-template-columns: 1fr;
  }

  .confirm-label {
    padding-bottom: 10px;
  }

  .confirm-value {
    padding: 0 0 20px 0;
  }

  .confirm-row:not(:last-child) .confirm-value {
    border-bottom: 1px solid var(--sub-color-gray);
  }
}

/* Thanks Step */
.thanks-message {
    text-align: center;
    padding: 60px 30px;
}

.thanks-message p {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 0px;
}
.thanks-message .mb30{
    margin-bottom: 30px;
}
.thanks-message .small-text {
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .step-indicator {
        gap: 20px;
        padding: 0px 0px 30px 0px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step:not(:last-child)::after {
        width: 20px;
        
        top: 20px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .form-row {
        padding: 20px;
    }
    
    .privacy-check {
        padding: 20px;
    }
    
    .form-buttons {
        padding: 30px 20px;
    }
    
    .confirm-row {
        flex-direction: column;
    }
    
    .confirm-label {
        border-right: none;
       
        min-width: auto;
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-confirm,
    .btn-back,
    .btn-home {
        width: 100%;
    }
    .btn-submit{
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .step-indicator {
        gap: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step:not(:last-child)::after {
        width: 15px;
        top: 17px;
    }
    
    .thanks-message {
        padding: 40px 20px;
    }
}

/* Contact Form 7 Error Styling */
.wpcf7-not-valid-tip {
    color: var(--sub-color);
    font-size: 12px;
    margin-top: 5px;
    display: block;
    font-weight: bold;
}

.wpcf7-validation-errors {
    border: 2px solid var(--sub-color);
    background-color: #fff5f5;
    color: var(--sub-color);
    padding: 15px;
    border-radius: 4px;
    margin: 20px 30px;
}

.wpcf7 form.invalid .form-control,
.wpcf7 form.invalid .form-select,
.wpcf7 form.invalid .form-textarea {
    border: 1px solid var(--sub-color);
}
.wpcf7-spinner{
    display: none;
}
.wpcf7 form .wpcf7-response-output{
    display: none;
}

/* Page Philosophy Start */
.c-page-heading .title {
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: bold;
    line-height: calc(78 / 60);
    letter-spacing: 0.1em;
    color: #ffffff;
}


.c-h2 {
    margin: unset;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
}
.c-h3 {
    margin: unset;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: calc(72 / 40);
}
.c-h5 {
    margin: unset;
    font-size: clamp(18px, 3vw, 30px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: calc(54 / 30);
}


.p-philosophy__top {
    padding-top: 90px;
    background-color: #092350;
}
.p-philosophy__top__content {
    padding: 80px 0;
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    font-size: clamp(18px, 3vw, 30px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: calc(75 / 30);
    color: var(--white);
    text-align: center;
}
.p-philosophy__top__img img {
    width: 100%;
    aspect-ratio: 1280 / 960;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .p-philosophy__top__img img {
        aspect-ratio: 4 / 5;
    }
    /* .p-philosophy__top__content{
        text-align: left;
    } */
}

.p-philosophy__origin {
    position: relative;
    color: var(--white);
    overflow: visible;
     background: radial-gradient(circle, #173152 0%, #001127 100%);
}
.p-philosophy__origin__bg {
    /* position: sticky;
    top: 0;
    width: 100%;
    height: 100vh; */
    
    z-index: 1;
    
    
}
.p-philosophy__origin__bg img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 59%;
    aspect-ratio: 767 / 987;
    object-fit: cover;
}
.p-philosophy__originInner {
    position: relative;
    padding: 150px 0 ;
    z-index: 2;
   
    background-image: url("../img/philosophy/orgin_flame.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}
.p-philosophy__origin .c-h2 {
    text-align: center;
}
.p-philosophy__origin .c-h5 {
    text-align: center;
    width: 100%;
}
.p-philosophy__origin__content {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.p-philosophy__origin__text > p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: calc(45 / 18);
    letter-spacing: 0.05em;
    text-align: center;
}
.p-philosophy__origin__text > p:not(:first-of-type) {
    margin-top: 45px;
}
@media screen and (max-width: 768px) {
    .p-philosophy__origin__content {
        margin-top: 30px;
        gap: 24px;
    }
    .p-philosophy__origin__text > p {
        font-size: 1.6rem;
        line-height: 2;
    }
    .p-philosophy__origin__text>p:not(:first-of-type) {
        margin-top: 30px;
    }
    .p-philosophy__origin__bg img{
        width: 100%;
    }
    .p-philosophy__origin__text > p{
        text-align: left;
    text-align:justify;
    }
    .p-philosophy__origin__content{
        align-items: flex-start;
    }
    .p-philosophy__origin .c-h5{
        text-align: left;
    }
    .p-philosophy__originInner {
        padding: 100px 0 ;
    }
}


.p-philosophy__story {
    padding: 50px 0 0;
    background: radial-gradient(circle, #FFEBC9 0%, #FFF8ED 100%);    
}
.p-philosophy__story__flag img {
    width: 100%;
    aspect-ratio: 800 / 423;
    object-fit: cover;
}
.p-philosophy__story .c-h2 {
    margin-top: 56px;
    color: var(--main-color);
    text-align: center;
}
.p-philosophy__story .c-h5 {
    margin-top: 50px;
    text-align: center;
    color: #13488E;
    font-weight: 600;
}
.p-philosophy__story__text {
    margin-top: 43px;
}
.p-philosophy__story__text > p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: calc(25.2 / 14);
    letter-spacing: 0.05em;
}
.p-philosophy__story__text > p:not(:first-of-type) {
    margin-top: 25px;
}
.p-philosophy__story__text strong {
    font-weight: bold;
}
.p-philosophy__story__city {
    margin-top: 78px;
}
.p-philosophy__story__city img {
    width: 100%;
    aspect-ratio: 1280 / 431;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .p-philosophy__story .c-h2 {
        margin-top: 35px;
    }
    .p-philosophy__story .c-h5 {
        margin-top: 35px;
    }
    .p-philosophy__story__city {
        margin-top: 50px;
    }
}


.p-philosophy__mission {
    margin-top: -1px;
    padding: 156px 0 185px;
    color: #ffffff;
    background-color: #06397C;
}
.p-philosophy__mission .c-h2 {
    text-align: center;
}
.p-philosophy__mission .content {
    margin-top: 46px;
    display: flex;
    gap: 20px;
}
.p-philosophy__mission .text-wrapper {
    flex: 1;
}
.p-philosophy__mission .text {
    margin-top: 42px;
}
.p-philosophy__mission .text > p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(25.2 / 14);
    letter-spacing: 0.05em;
}
.p-philosophy__mission .text > p:not(:first-of-type) {
    margin-top: 25px;
}
.p-philosophy__mission .image {
    width: 34%;
}
.p-philosophy__mission .image img {
    width: 100%;
    aspect-ratio: 340 / 347;
    object-fit: cover;
}
@media  screen and (max-width: 768px) {
    .p-philosophy__mission {
        padding: 90px 0 100px;
    }
    .p-philosophy__mission .content {
        margin-top: 30px;
        flex-direction: column-reverse;
    }
    .p-philosophy__mission .image {
        width: 60%;
        max-width: 325px;
        margin-inline: auto;
    }
    .p-philosophy__mission .text {
        margin-top: 30px;
    }
    .p-philosophy__mission .c-h3 {
        font-size: 2.2rem;
    }
    .p-philosophy__mission .text>p:not(:first-of-type) {
        margin-top: 20px;
    }
}


.p-philosophy__vission {
    position: relative;
    color: var(--white);
    overflow: visible;

}
/* .p-philosophy__vission__bg {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
} */
.p-philosophy__vission__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p-philosophy__vissionInner {
    position: relative;
    z-index: 2;
    padding: 150px 0;
     background-image: url("../img/philosophy/vision.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    
}
.p-philosophy__vission .c-h2 {
    text-align: center;
}
.p-philosophy__vission h3 {
    margin: 47px 0 0;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: bold;
    line-height: calc(90 / 50);
    letter-spacing: 0.05em;
    text-align: center;
}
.p-philosophy__vission .text {
    max-width: 670px;
    margin: 40px auto 0;
}
.p-philosophy__vission .text > p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: calc(28.8 / 16);
    letter-spacing: 0.05em;
    text-align: center;
}
.p-philosophy__vission .text > p:not(:first-of-type) {
    margin-top: 28px;
}
@media screen and (max-width: 768px) {
    .p-philosophy__vission h3 {
        margin: 35px 0 0;
        font-size: 2.2rem;
    }
    .p-philosophy__vission .text {
        margin: 30px 0 0;
    }
    .p-philosophy__vission .text > p {
        font-size: 1.4rem;
    }
    .p-philosophy__vission .text>p:not(:first-of-type) {
        margin-top: 20px;
    }
    .p-philosophy__vission .text > p{
        text-align: left;
text-align:justify;
    }
    .p-philosophy__vissionInner{
        padding: 80px 0;
    }
}


.p-philosophy__values {
    padding: 154px 0;
    background-color: #ffffff;
}
.p-philosophy__values .c-h2 {
    color: var(--main-color);
}
.p-philosophy__content {
    margin-top: 56px;
    display: flex;
    gap: 45px;
    align-items: flex-end;
}
.p-philosophy__left {
    height: 260px;
    width: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    bottom: 0;
}
.value-item-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-30%);
    opacity: 0;
    transition: all 0.2s ease;
}
.value-item-left.is-vissible {
    opacity: 1;
    transform: translateY(-50%);
}
.p-philosophy__content .number {
    font-family: "Montserrat", sans-serif;
    font-size: 7rem;
    font-weight: bold;
    line-height: calc(104 / 70);
    letter-spacing: 0.1em;
    color: var(--main-color);
}
.p-philosophy__content .image {
    width: 170px;
}
.p-philosophy__content .image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.p-philosophy__right {
    flex: 1;
}
.value-item-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}
.value-text {
    min-height: 260px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    border-top: 1px solid #C4C4C4;
}
.value-item-right:last-of-type .value-text {
    border-bottom: 1px solid #C4C4C4;
}
.value-title {
    margin: unset;
    font-size: clamp(18px, 3vw, 30px);
    font-weight: bold;
    line-height: calc(54 / 30);
    letter-spacing: 0.05em;
    color: var(--main-color);
}
.value-desc {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: calc(28.8 / 16);
    letter-spacing: 0.05em;
    color: #323232;
}
@media screen and (max-width: 768px) {
    .p-philosophy__values {
        padding: 100px 0;
    }
    .p-philosophy__left {
        display: none;
    }
    .value-item-right .value-item-left {
        display: flex;
        opacity: 1;
        transform: unset;
        position: unset;
    }
    .p-philosophy__content .number {
        font-size: 5rem;
    }
    .p-philosophy__content .image {
        width: 140px;
    }
    .value-item-right {
        border-top: 1px solid #C4C4C4;
        padding: 30px 20px;
        flex-direction: column;
        gap: 30px;
    }
    .value-item-right:last-of-type {
        border-bottom: 1px solid #C4C4C4;
    }
    .value-item-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .value-text {
        min-height: unset;
        padding: unset;
        border-top: unset;
    }
    .value-item-right:last-of-type .value-text {
        border-bottom: unset;
    }
    .value-desc {
        font-size: 1.4rem;
    }
}


.name-section {
    position: relative;
    width: 100%;
    overflow: visible;
    background-color: #06397C;
}
.name-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
}
.name-inner {
    width: 100%;
    max-width: 1080px;
    height: 100%;
    padding: 0 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}
#name-swiper {
    width: 100%;
    height: 100%;
}
#name-swiper .swiper-wrapper {
    height: 100%;
}
#name-swiper {
    width: 100%;
    height: 100%;
}
#name-swiper .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#p-philosophy .fim-pagination {
    gap: 0;
}
#p-philosophy .fim-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
}
#p-philosophy .swiper-pagination-vertical.swiper-pagination-bullets,
#p-philosophy .swiper-vertical>.swiper-pagination-bullets {
    left: 10px !important;
}
.name-item {
    width: 100%;
    padding: 72px ;
    background-color: #ffffff;
    border-radius: 50px;
    height: 75vh;
    min-height: 550px;
}
.name-item .c-h3 {
    color: #06397C;
    text-align: center;
}
.name-item .c-h5 {
    margin-top: 46px;
    font-weight: bold;
}
.name-item .c-h5 .dark-blue {
    color: #13488E;
}
.name-item .c-h5 .light-blue {
    color: #5386B9;
}
.name-item .text {
    margin-top: 24px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(28.8 / 16);
    letter-spacing: 0.05em;
    color: #323232;
}
.name-item img {
    display: block;
    margin-inline: auto;
    max-width: 450px;
    width: 100%;
    aspect-ratio: 450 / 140;
    object-fit: cover;
}
.name-item.name-item--1 .text {
    margin-top: 42px;
    text-align: center;
}
.name-item.name-item--1 .c-h5 {
    margin-top: 24px;
    text-align: center;
}
.name-item.name-item--1 img {
    margin: 24px auto 0;
    max-width: 540px;
    aspect-ratio: 540 / 171;
}
#page-service .bg-service-main{
    padding-top: 95px;
}
@media screen and (max-width: 1024px) {
    .name-item {
        padding: 50px;
        min-height: 500px;
    }
    .name-item img,
    .name-item.name-item--1 img {
        max-width: 450px;
    }
}
@media screen and (max-width: 900px) {
    
    .name-item.name-item--1 .text {
        margin-top: 24px;
    }
    .name-item .c-h5 {
        margin-top: 24px;
    }
}
@media screen and (max-width: 768px) {
    .name-inner {
        padding: 80px 20px;
    }
    .name-item {
        height: auto;
        min-height: auto;
        padding: 60px 20px;
        border-radius: 30px;
        margin-bottom: 30px;
    }
    #p-philosophy .fim-pagination {
        gap: 0;
        display: flex;
        bottom: 6%;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
    }
#p-philosophy  .swiper-wrapper {
    display: block !important;   
    transform: none !important;
  }

  #p-philosophy  .swiper-slide {
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    opacity: 1 !important;
    position: relative !important;
  }
.name-pin{
    height: auto;
}
}
/* Page Philosophy End */

/* corrections */
#page-service .service-banner__txt,
.service1-catch{
    font-weight: 500;
}
#page-service .service-banner{
    border-radius: 10px;
}
.section-title{
    display: flex;
    align-items: center;
}
#page-service .section-title{
    color: var(--main-color);
}
.c-scroll-down{
    color: var(--main-color);
}
@media screen and (max-width: 768px) {
    #page-service .bg-service-main{
        padding-top: 85px;
    }
   
   #page-service .sec-service1-top__wrap{
    margin-top: 50px;
   }
   #page-service .bg-service-main{
    background-size: 900px;
   }
   #page-service .bg-radius{
    padding-top: 50px;
   }
   .mb100{
    margin-bottom: 70px;
   }
   #page-service .step-item{
    gap: 10px;
   }
   #page-service .section-title{
    margin-bottom: 20px;
   }
   #page-service .service-hr__item{
    padding-top: 35px;
    padding-bottom: 35px;
   }
   #page-service .service-banner__txt{
    text-align: center;
   }
}


table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0px;
}

td {
    border: 1px solid #000;
    padding: 10px;
}


pre {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
}


/* Page Fim lab posts */
/* -------------------------------
   FIM CONTENT LAYOUT (NAMESPACE)
-------------------------------- */
.fim-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left big content area */
.fim-content .fim-left {
  flex: 1;
}

/* Right sidebar */
.fim-content .fim-right {
  width: 200px;
  flex-shrink: 0;
}


#page-single .fim-content .meta-box {
  margin-bottom: 50px;
}

#page-single .fim-content .meta-box .lead3{
    margin-bottom: 10px;
    display: block;
}

.fim-content .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#page-single .fim-content .tag-item {
  display: inline-block;
  padding: 6px 12px;
  background: var(--white);
  border-radius: 3px;
  border:1.5px solid var(--main-color) ;
  font-size: 12px;
  color: var(--main-color);
    text-decoration: none;
}

.fim-content .recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Desktop (default) */
#page-fimlab .news-list.grid-3col {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#page-fimlab .news-card {
  width: calc(33.333% - 20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 20px;

  display: flex;
  flex-direction: column;
}

#page-fimlab .news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#page-fimlab .news-bottom {
  margin-top: auto; /* pushes it to bottom */
}

#page-fimlab .news-item-title{
    padding-right: 0px;
    margin-bottom: 20px;
}
#page-fimlab .news-item-title::after{
    display: none;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.search-label {
  white-space: nowrap;
  margin-right: 10px;
    font-size: 16px;
    min-width: 144px;
}

.search-box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  border: 2px solid var(--main-color); /* your blue border */
  border-radius: 40px;
  padding: 5px 15px;
  background: #fff;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 14px;
}

.search-box input::placeholder {
  color: #bbb;
}

.search-box button {
  border: none;
  background: transparent;
  color: var(--main-color); 
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
}

.search-box button:hover {
  opacity: 0.7;
}
.fim-filter-tab{
   flex-direction: column;
}

.fim-filter-tab  {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
}
.fim-filter-tab .news-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 20px;
}
.grid-3col p{
    font-size: 16px;
}
/* Tablet (max-width: 1024px) → 2 cards */
@media (max-width: 1024px) {
  #page-fimlab .news-card {
    width: calc(50% - 20px);
  }
}

/* Mobile (max-width: 640px) → 1 card */
@media (max-width: 640px) {
  #page-fimlab .news-card {
    width: 100%;
  }
  .search-form{
    flex-direction: column;
    align-items: flex-start;
  }
}
#page-fimlab .news-thumbnail{
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
}
#page-fimlab .news-list{
    flex-direction: row;
}


.recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* image crop hoke div me perfectly fit hogi */
    display: block;
}
#page-single .fim-content .recent-list{
    padding-left: 0px;
}
#page-single  .fim-content .recent-list li {
  margin-bottom: 12px;
  list-style: none;
  padding-left: 0px;
}
#page-single  .fim-content .recent-list li:before{
    display: none;
}
/* #page-single .fim-content .recent-list  {
  display: inline-flex;
  text-decoration: none;
  background-color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  color: var(--main-color);
} */
#page-single .fim-content .recent-info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#page-single .fim-content .recent-date {
  display: block;
  font-size: 12px;
  color: #999;
}

#page-single .fim-content .recent-title {
  display: block;
  color: #333;
}
#page-single .page-single__content  .news-category {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  color: var(--main-color);
  background-color: var(--white);
  text-decoration: none;
  line-height: 1.4;
}
#page-single .author-box {
  margin-top: 25px;
  padding: 30px;
}

#page-single .author-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

#page-single .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

#page-single .author-name {
  font-size: 16px;
  font-weight: 600;
}
#page-fimlab .author-name{
    margin-bottom: 20px;
    color: var(--gray3);
    font-size: 14px;
}
#page-single .author-posts {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

@media(max-width: 768px) {
  #page-single .fim-content {
    flex-direction: column;
  }

  #page-single .fim-content .fim-right {
    width: 100%;
  }
}


#page-single .recommended-posts{
    background-color: var(--white);
    padding: 80px 0px;
}

#page-fimlab .recommended-title{
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 20px;
}