@font-face {
  font-family: "Bai Jamjuree";
  src: url("../fonts/Bai_Jamjuree,Manrope/Bai_Jamjuree/BaiJamjuree-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: "Bai Jamjuree";
  src: url("../fonts/Bai_Jamjuree,Manrope/Bai_Jamjuree/BaiJamjuree-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: "Bai Jamjuree";
  src: url("../fonts/Bai_Jamjuree,Manrope/Bai_Jamjuree/BaiJamjuree-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: "Bai Jamjuree";
  src: url("../fonts/Bai_Jamjuree,Manrope/Bai_Jamjuree/BaiJamjuree-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }
body {
  font-family: "Bai Jamjuree", sans-serif; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

.container,
.container-md {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%; }

:root {
  --header-bg: rgba(255, 255, 255, 0.15);
  --header-blur: 15px;
  --logo-bg: #ffffff;
  --nav-active-bg: rgba(255, 255, 255, 0.25);
  --btn-primary: #002347;
  --text-color: #ffffff;
  --font-main: "Bai Jamjuree", sans-serif;
  --font-heading: "Bai Jamjuree", sans-serif;
  --color-dark-blue: #012347;
  --grad-nav-active: linear-gradient(180deg, #e7f1ff 0%, #c9e0ff 100%);
  --grad-btn-contact:
    radial-gradient(
      ellipse at 50% 100%,
      rgba(0, 86, 199, 0.7) 0%,
      rgba(0, 86, 199, 0) 70%
    ),
    #001325; }

.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: var(--font-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
  .site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; }
  .site-header .header-inner {
    background: var(--header-bg);
    backdrop-filter: blur(var(--header-blur));
    -webkit-backdrop-filter: blur(var(--header-blur));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease; }
  .site-header .header-logo {
    position: relative;
    width: 120px;
    height: 40px; }
    .site-header .header-logo .logo-pill {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10; }
      .site-header .header-logo .logo-pill img {
        height: 90px;
        width: auto;
        display: block;
        object-fit: contain;
        max-width: none; }
  .site-header .header-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001; }
    .site-header .header-mobile-toggle span {
      display: block;
      height: 2px;
      width: 100%;
      background-color: var(--text-color);
      border-radius: 2px;
      transition: all 0.3s ease; }
  .site-header .header-nav {
    flex: 1;
    display: flex;
    justify-content: center; }
    .site-header .header-nav .nav-menu {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
      gap: 5px; }
      .site-header .header-nav .nav-menu .menu-item a {
        color: var(--text-color);
        text-decoration: none;
        padding: 8px 18px;
        border-radius: 100px;
        font-weight: 500;
        transition: all 0.3s ease;
        display: block;
        font-size: 15px; }
      .site-header .header-nav .nav-menu .menu-item:hover a, .site-header .header-nav .nav-menu .menu-item.active a {
        background: var(--nav-active-bg);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        color: #fff; }
  .site-header .header-action .btn-contact {
    background: var(--grad-btn-contact);
    background-color: #001325;
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 35, 71, 0.3);
    position: relative;
    overflow: hidden; }
    .site-header .header-action .btn-contact .icon-phone {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.15);
      width: 28px;
      height: 28px;
      border-radius: 50%; }
      .site-header .header-action .btn-contact .icon-phone svg {
        width: 14px;
        height: 14px; }
    .site-header .header-action .btn-contact::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: none; }
    .site-header .header-action .btn-contact:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 35, 71, 0.4);
      filter: brightness(1.1); }
      .site-header .header-action .btn-contact:hover::after {
        left: 100%;
        transition: 0.9s; }
  .site-header.is-scrolled {
    top: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: none; }
    .site-header.is-scrolled .header-inner {
      background: transparent;
      border: none;
      box-shadow: none;
      border-radius: 0;
      padding: 0;
      height: 70px; }
    .site-header.is-scrolled .header-logo {
      display: flex;
      align-items: center; }
      .site-header.is-scrolled .header-logo .logo-pill {
        border-color: #012347;
        box-shadow: none; }
    .site-header.is-scrolled .header-nav {
      height: 100%; }
      .site-header.is-scrolled .header-nav .nav-menu {
        height: 100%; }
        .site-header.is-scrolled .header-nav .nav-menu .menu-item {
          height: 100%; }
          .site-header.is-scrolled .header-nav .nav-menu .menu-item a {
            color: var(--color-dark-blue);
            padding: 0 18px;
            height: 100%;
            display: flex;
            align-items: center;
            border-radius: 0;
            position: relative;
            background: transparent;
            transition: all 0.4s ease; }
            .site-header.is-scrolled .header-nav .nav-menu .menu-item a::after {
              content: "";
              position: absolute;
              bottom: 0;
              left: 0;
              width: 100%;
              height: 2px;
              background: #012347;
              transform: scaleX(0);
              opacity: 0;
              transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
          .site-header.is-scrolled .header-nav .nav-menu .menu-item:hover a, .site-header.is-scrolled .header-nav .nav-menu .menu-item.active a {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(201, 224, 255, 0.6) 100%);
            color: var(--color-dark-blue);
            box-shadow: none; }
            .site-header.is-scrolled .header-nav .nav-menu .menu-item:hover a::after, .site-header.is-scrolled .header-nav .nav-menu .menu-item.active a::after {
              transform: scaleX(1);
              opacity: 1; }
    .site-header.is-scrolled .header-action {
      display: flex;
      align-items: center; }
      .site-header.is-scrolled .header-action .btn-contact {
        padding: 8px 12px;
        font-size: 14px; }
  @media (max-width: 991px) {
    .site-header {
      top: 10px; }
      .site-header .header-inner {
        padding: 6px 12px;
        border-radius: 50px; }
      .site-header .header-mobile-toggle {
        display: flex; }
      .site-header .header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%); }
        .site-header .header-logo .logo-pill {
          padding: 8px 0px;
          font-size: 14px; }
      .site-header .header-nav {
        display: none; }
      .site-header .header-action .btn-contact {
        padding: 5px 12px;
        font-size: 12px;
        gap: 0; }
        .site-header .header-action .btn-contact .icon-phone {
          display: none !important; }
      .site-header.is-scrolled {
        top: 0; }
        .site-header.is-scrolled .header-inner {
          height: 54px; }
        .site-header.is-scrolled .header-mobile-toggle span {
          background-color: var(--color-dark-blue); } }

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease; }
  .mobile-nav-backdrop.is-open {
    display: block;
    opacity: 1; }

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15); }
  .mobile-nav-drawer.is-open {
    transform: translateX(0); }
  .mobile-nav-drawer .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e8edf2; }
    .mobile-nav-drawer .mobile-nav-header .mobile-nav-logo {
      position: relative;
      width: 100px;
      height: 35px;
      border-color: #012347;
      box-shadow: none; }
      .mobile-nav-drawer .mobile-nav-header .mobile-nav-logo img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        height: 60px;
        width: auto;
        object-fit: contain;
        max-width: none; }
    .mobile-nav-drawer .mobile-nav-header .mobile-nav-close {
      background: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      padding: 0; }
      @media (max-width: 575px) {
        .mobile-nav-drawer .mobile-nav-header .mobile-nav-close {
          width: 18px;
          height: 14px; } }
      .mobile-nav-drawer .mobile-nav-header .mobile-nav-close span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--color-dark-blue);
        border-radius: 2px;
        transition: all 0.3s ease; }
      .mobile-nav-drawer .mobile-nav-header .mobile-nav-close:hover span {
        background-color: #034086; }
  .mobile-nav-drawer .mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    flex: 1; }
    .mobile-nav-drawer .mobile-nav-menu li a {
      display: block;
      padding: 16px 24px;
      color: #364a61;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      font-family: var(--font-main);
      border-left: 3px solid transparent;
      transition: all 0.2s ease; }
      @media (max-width: 575px) {
        .mobile-nav-drawer .mobile-nav-menu li a {
          font-size: 14px;
          padding: 12px 20px; } }
      .mobile-nav-drawer .mobile-nav-menu li a:hover {
        color: #012347;
        background: #f0f6ff;
        border-left-color: #012347;
        padding-left: 30px; }
    .mobile-nav-drawer .mobile-nav-menu li.active {
      padding: 0 12px; }
      .mobile-nav-drawer .mobile-nav-menu li.active a {
        color: #fff;
        background: linear-gradient(to right, #0056c7 0%, #012347 55%, #001325 100%);
        border-left-color: #d7eaff;
        font-weight: 700;
        padding-left: 20px;
        border-radius: 8px; }

@media (min-width: 992px) {
  .mobile-nav-backdrop,
  .mobile-nav-drawer {
    display: none !important; } }
.site-footer {
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 86, 199, 0.4) 0%, rgba(0, 86, 199, 0) 70%), #000c1a;
  color: #fff;
  padding: 50px 0 30px;
  font-family: "regular", sans-serif; }
  @media (max-width: 575px) {
    .site-footer {
      background: radial-gradient(70% 30% at 50% 100%, rgba(0, 86, 199, 0.4) 0%, rgba(0, 86, 199, 0) 100%), #000c1a; } }
  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px; }
    @media (max-width: 991px) {
      .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr; } }
    @media (max-width: 575px) {
      .site-footer .footer-grid {
        grid-template-columns: 1fr; } }
  .site-footer .footer-col .footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff; }
    @media (max-width: 575px) {
      .site-footer .footer-col .footer-title {
        font-weight: 600; } }
  .site-footer .brand-col .footer-logo {
    position: relative;
    height: 80px; }
    .site-footer .brand-col .footer-logo img {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 120px;
      width: auto;
      object-fit: contain;
      max-width: none;
      display: block; }
  .site-footer .brand-col .footer-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 300px; }
    @media (max-width: 575px) {
      .site-footer .brand-col .footer-description {
        font-size: 14px;
        opacity: 0.8; } }
  .site-footer .brand-col .footer-tax {
    font-size: 16px; }
    @media (max-width: 575px) {
      .site-footer .brand-col .footer-tax {
        font-size: 14px;
        opacity: 0.8; } }
  .site-footer .footer-links {
    opacity: 0.7;
    list-style: none;
    padding: 0;
    margin: 0; }
    @media (max-width: 575px) {
      .site-footer .footer-links {
        font-size: 14px;
        opacity: 0.8; } }
    .site-footer .footer-links li {
      margin-bottom: 12px; }
      .site-footer .footer-links li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease; }
        .site-footer .footer-links li a:hover {
          opacity: 1;
          padding-left: 5px;
          color: #fff; }
  .site-footer .contact-info {
    opacity: 0.7;
    list-style: none;
    padding: 0;
    margin: 0; }
    @media (max-width: 575px) {
      .site-footer .contact-info {
        font-size: 14px;
        opacity: 0.8; } }
    .site-footer .contact-info li {
      margin-bottom: 15px;
      font-size: 16px;
      line-height: 1.5;
      display: flex;
      flex-direction: column; }
      @media (max-width: 575px) {
        .site-footer .contact-info li {
          font-size: 14px; } }
      .site-footer .contact-info li .info-label {
        font-weight: 600;
        margin-bottom: 4px; }
      .site-footer .contact-info li .info-value {
        color: #fff;
        text-decoration: none;
        transition: opacity 0.3s ease; }
        .site-footer .contact-info li .info-value:hover {
          opacity: 1; }
  .site-footer .social-links {
    list-style: none;
    padding: 0;
    margin: 0; }
    @media (max-width: 575px) {
      .site-footer .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 15px; } }
    .site-footer .social-links li {
      margin-bottom: 15px; }
      @media (max-width: 575px) {
        .site-footer .social-links li {
          margin-bottom: 0; } }
      .site-footer .social-links li a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease; }
        .site-footer .social-links li a:hover {
          opacity: 1; }
          .site-footer .social-links li a:hover .social-icon {
            background: #fff;
            color: #000c1a;
            border-color: #fff;
            transform: translateX(10px); }
          .site-footer .social-links li a:hover span {
            transform: translateX(10px); }
        .site-footer .social-links li a .social-icon {
          width: 40px;
          height: 40px;
          border: 1px solid rgba(255, 255, 255, 0.3);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.4s ease-in-out;
          flex-shrink: 0;
          background: transparent;
          opacity: unset; }
          .site-footer .social-links li a .social-icon svg {
            display: block;
            transition: none; }
        .site-footer .social-links li a span {
          opacity: 0.7;
          font-size: 16px;
          transition: transform 0.4s ease-in-out; }
          @media (max-width: 575px) {
            .site-footer .social-links li a span {
              font-size: 14px; } }
  .site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 767px) {
      .site-footer .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center; } }
    .site-footer .footer-bottom .copyright {
      font-size: 14px; }
      @media (max-width: 575px) {
        .site-footer .footer-bottom .copyright {
          font-size: 12px; } }
    .site-footer .footer-bottom .footer-legal {
      display: flex;
      gap: 25px; }
      @media (max-width: 767px) {
        .site-footer .footer-bottom .footer-legal {
          width: 100%;
          justify-content: space-between; } }
      .site-footer .footer-bottom .footer-legal a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        transition: opacity 0.3s ease; }
        .site-footer .footer-bottom .footer-legal a:hover {
          opacity: 1; }

.home-hero {
  position: relative; }
  @media (max-width: 575px) {
    .home-hero {
      min-height: 400px; } }
  .home-hero .hero-background {
    position: relative;
    width: 100%;
    z-index: 0; }
    @media (max-width: 575px) {
      .home-hero .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%; } }
    .home-hero .hero-background img {
      width: 100%;
      height: 810px;
      max-height: 100%;
      display: block;
      object-fit: cover; }
      @media (max-width: 575px) {
        .home-hero .hero-background img {
          height: 100%; } }
  .home-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; }
  .home-hero .hero-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px; }
  .home-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    text-align: center; }
    .home-hero .hero-content .hero-title {
      font-size: 60px;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.2;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
      @media (max-width: 991px) {
        .home-hero .hero-content .hero-title {
          font-size: 32px;
          margin-bottom: 15px; } }
      @media (max-width: 575px) {
        .home-hero .hero-content .hero-title {
          font-size: 20px;
          margin-bottom: 10px; } }
    .home-hero .hero-content .hero-subtitle {
      font-size: 18px;
      font-weight: 400;
      margin-bottom: 35px;
      opacity: 0.9;
      line-height: 1.6; }
      @media (max-width: 991px) {
        .home-hero .hero-content .hero-subtitle {
          font-size: 15px;
          margin-bottom: 25px; } }
      @media (max-width: 575px) {
        .home-hero .hero-content .hero-subtitle {
          font-size: 14px;
          margin-bottom: 20px; } }
    .home-hero .hero-content .btn {
      display: inline-block;
      padding: 15px 40px;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease; }
      .home-hero .hero-content .btn-primary {
        background: #fff;
        color: #002347; }
        .home-hero .hero-content .btn-primary:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          background: #f8f9fa; }

.section-padding {
  padding: 40px 0; }
  @media (max-width: 991px) {
    .section-padding {
      padding: 40px 0; } }
  @media (max-width: 575px) {
    .section-padding {
      padding: 20px 0; } }

.home-intro {
  background-color: #fff; }
  .home-intro .intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 60px;
    align-items: flex-start; }
    @media (max-width: 991px) {
      .home-intro .intro-grid {
        grid-template-columns: 1.3fr 0.7fr; } }
    @media (max-width: 767px) {
      .home-intro .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px; } }
  .home-intro .intro-visual .visual-stack {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-end; }
    @media (max-width: 575px) {
      .home-intro .intro-visual .visual-stack {
        gap: 10px; } }
    .home-intro .intro-visual .visual-stack .visual-item {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); }
      .home-intro .intro-visual .visual-stack .visual-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block; }
      .home-intro .intro-visual .visual-stack .visual-item.large {
        flex: 1.2;
        aspect-ratio: 4/3;
        max-width: 350px; }
      .home-intro .intro-visual .visual-stack .visual-item.small {
        flex: 0.8;
        aspect-ratio: 4/3;
        max-width: 225px; }
  .home-intro .intro-visual .intro-main-content {
    text-align: left; }
    .home-intro .intro-visual .intro-main-content .intro-title {
      color: #08192c;
      font-size: 40px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 15px;
      text-transform: uppercase;
      max-width: 521px; }
      @media (max-width: 991px) {
        .home-intro .intro-visual .intro-main-content .intro-title {
          font-size: 28px; } }
      @media (max-width: 575px) {
        .home-intro .intro-visual .intro-main-content .intro-title {
          font-size: 20px; } }
    .home-intro .intro-visual .intro-main-content .intro-desc {
      color: #364a61;
      font-size: 16px;
      line-height: 1.6;
      max-width: 100%;
      margin: 0; }
      @media (max-width: 575px) {
        .home-intro .intro-visual .intro-main-content .intro-desc {
          font-size: 14px; } }
  .home-intro .intro-features {
    display: flex;
    flex-direction: column;
    gap: 20px; }
    @media (max-width: 991px) {
      .home-intro .intro-features {
        flex-direction: column;
        margin-top: 20px;
        gap: 20px; } }
    @media (max-width: 767px) {
      .home-intro .intro-features {
        flex-direction: row;
        gap: 10px; } }
    @media (max-width: 575px) {
      .home-intro .intro-features {
        gap: 5px; } }
    .home-intro .intro-features .feature-item {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 10px;
      border: 1px solid #08192c;
      border-radius: 16px;
      transition: all 0.3s ease; }
      @media (max-width: 991px) {
        .home-intro .intro-features .feature-item {
          width: 100%;
          padding: 20px;
          min-height: auto; } }
      @media (max-width: 767px) {
        .home-intro .intro-features .feature-item {
          flex: 1;
          padding: 20px 10px;
          gap: 12px;
          border-radius: 12px;
          min-height: 200px;
          justify-content: center; } }
      @media (max-width: 575px) {
        .home-intro .intro-features .feature-item {
          justify-content: flex-start;
          padding: 15px 5px;
          gap: 10px;
          min-height: 254px; } }
      .home-intro .intro-features .feature-item:hover {
        border-color: #08192c;
        box-shadow: 0 10px 20px rgba(0, 35, 71, 0.05); }
      .home-intro .intro-features .feature-item .feature-header {
        display: flex;
        align-items: center;
        gap: 16px; }
        @media (max-width: 991px) {
          .home-intro .intro-features .feature-item .feature-header {
            flex-direction: row;
            text-align: left;
            gap: 16px; } }
        @media (max-width: 767px) {
          .home-intro .intro-features .feature-item .feature-header {
            gap: 8px;
            flex-direction: column;
            text-align: center; } }
        .home-intro .intro-features .feature-item .feature-header .feature-number {
          font-size: 60px;
          font-weight: 700;
          color: #08192c;
          line-height: 1; }
          @media (max-width: 991px) {
            .home-intro .intro-features .feature-item .feature-header .feature-number {
              font-size: 40px; } }
          @media (max-width: 575px) {
            .home-intro .intro-features .feature-item .feature-header .feature-number {
              font-size: 40px; } }
        .home-intro .intro-features .feature-item .feature-header .feature-title {
          font-size: 18px;
          font-weight: 600;
          color: #08192c;
          margin: 0; }
          @media (max-width: 991px) {
            .home-intro .intro-features .feature-item .feature-header .feature-title {
              font-size: 18px; } }
          @media (max-width: 575px) {
            .home-intro .intro-features .feature-item .feature-header .feature-title {
              font-size: 16px; } }
      .home-intro .intro-features .feature-item .feature-text {
        text-align: center;
        color: #364a61;
        font-size: 16px;
        line-height: 1.5;
        margin: 0; }
        @media (max-width: 991px) {
          .home-intro .intro-features .feature-item .feature-text {
            font-size: 16px;
            line-height: 1.2; } }
        @media (max-width: 575px) {
          .home-intro .intro-features .feature-item .feature-text {
            font-size: 14px; } }

.home-services .services-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center; }
  .home-services .services-header .services-title {
    font-size: 40px;
    font-weight: 700;
    color: #08192c;
    margin-bottom: 20px;
    text-transform: uppercase; }
    @media (max-width: 575px) {
      .home-services .services-header .services-title {
        font-size: 20px; } }
    @media (max-width: 991px) {
      .home-services .services-header .services-title {
        font-size: 28px; } }
  @media (max-width: 575px) {
    .home-services .services-header {
      margin: 0 auto 20px; } }
  .home-services .services-header .services-subtitle {
    font-family: "regular", sans-serif !important;
    font-size: 16px;
    color: #364a61;
    line-height: 1.6; }
    @media (max-width: 575px) {
      .home-services .services-header .services-subtitle {
        font-size: 14px; } }
.home-services .home-services-slider {
  position: relative; }
  @media (max-width: 991px) {
    .home-services .home-services-slider {
      padding-bottom: 15px; } }
  .home-services .home-services-slider .swiper-pagination {
    bottom: 0;
    left: 0;
    width: 100%; }
    @media (min-width: 992px) {
      .home-services .home-services-slider .swiper-pagination {
        display: none; } }
    .home-services .home-services-slider .swiper-pagination .swiper-pagination-bullet {
      width: 8px;
      height: 4px;
      background: #08192c;
      opacity: 0.2;
      border-radius: 0;
      margin: 0 4px !important;
      transition: all 0.3s ease; }
      .home-services .home-services-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        opacity: 1;
        width: 20px; }
@media (min-width: 992px) {
  .home-services .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 10px; } }
.home-services .services-grid .service-item {
  text-align: center; }
  .home-services .services-grid .service-item .service-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1/1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 6px solid transparent; }
    @media (max-width: 575px) {
      .home-services .services-grid .service-item .service-image {
        border-width: 3px;
        margin-bottom: 10px; } }
    .home-services .services-grid .service-item .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .home-services .services-grid .service-item:hover .service-image {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #d7eaff; }
  .home-services .services-grid .service-item .service-label {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #08192c;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.4; }
    @media (max-width: 575px) {
      .home-services .services-grid .service-item .service-label {
        font-size: 11px; } }

.home-business-model {
  background-color: #fff; }
  .home-business-model .model-grid {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    gap: 60px; }
    @media (max-width: 991px) {
      .home-business-model .model-grid {
        grid-template-columns: 1fr;
        gap: 40px; } }
  @media (max-width: 991px) {
    .home-business-model .model-info {
      text-align: center; } }
  @media (max-width: 575px) {
    .home-business-model .model-info {
      font-size: 20px; } }
  .home-business-model .model-info .model-title {
    font-size: 40px;
    font-weight: 700;
    color: #08192c;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.2; }
    @media (max-width: 991px) {
      .home-business-model .model-info .model-title {
        font-size: 28px;
        margin-bottom: 15px; } }
    @media (max-width: 575px) {
      .home-business-model .model-info .model-title {
        font-size: 20px; } }
  .home-business-model .model-info .model-intro {
    font-size: 18px;
    color: #364a61;
    line-height: 1.6; }
    @media (max-width: 991px) {
      .home-business-model .model-info .model-intro {
        max-width: 600px;
        margin: 0 auto; } }
    @media (max-width: 575px) {
      .home-business-model .model-info .model-intro {
        font-size: 14px; } }
  .home-business-model .model-cards {
    display: flex;
    flex-direction: column;
    gap: 20px; }
    @media (max-width: 991px) {
      .home-business-model .model-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; } }
    .home-business-model .model-cards .model-card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(to right, rgba(245, 250, 255, 0) 0%, #f5faff 20%, #f5faff 100%);
      border: 1px solid transparent;
      border-radius: 16px;
      padding: 10px;
      display: flex;
      gap: 25px;
      align-items: flex-start;
      transition: all 0.3s ease; }
      @media (max-width: 991px) {
        .home-business-model .model-cards .model-card {
          padding: 20px 15px;
          gap: 15px; } }
      .home-business-model .model-cards .model-card:hover {
        border-color: #8d1919; }
      .home-business-model .model-cards .model-card .card-icon {
        position: relative;
        width: 71px;
        height: 71px;
        background: radial-gradient(circle at 50% 120%, #e82424 0%, #8d1919 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        z-index: 1; }
        .home-business-model .model-cards .model-card .card-icon img {
          width: 45px;
          height: 45px;
          object-fit: contain;
          position: relative;
          z-index: 2; }
          @media (max-width: 575px) {
            .home-business-model .model-cards .model-card .card-icon img {
              width: 31px;
              height: 31px; } }
      .home-business-model .model-cards .model-card .card-content {
        position: relative;
        z-index: 2; }
        .home-business-model .model-cards .model-card .card-content .card-title {
          font-size: 18px;
          font-weight: 700;
          color: #08192c;
          margin-bottom: 15px;
          padding-bottom: 15px;
          border-bottom: 1px solid #d9e1e9; }
        @media (max-width: 575px) {
          .home-business-model .model-cards .model-card .card-content {
            font-size: 16px; } }
        .home-business-model .model-cards .model-card .card-content .card-text {
          font-size: 15px;
          color: #364a61;
          line-height: 1.6;
          margin: 0; }
          @media (max-width: 575px) {
            .home-business-model .model-cards .model-card .card-content .card-text {
              font-size: 12px; } }
      @media (max-width: 575px) {
        .home-business-model .model-cards .model-card {
          flex-direction: column;
          gap: 20px; }
          .home-business-model .model-cards .model-card .card-icon {
            width: 50px;
            height: 50px; }
            .home-business-model .model-cards .model-card .card-icon svg {
              width: 24px;
              height: 24px; } }

.home-values {
  overflow: hidden; }
  .home-values .values-title {
    font-size: 40px;
    font-weight: 700;
    color: #08192c;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center; }
    @media (max-width: 575px) {
      .home-values .values-title {
        font-size: 20px;
        margin-bottom: 20px; } }
  .home-values .values-grid {
    display: flex;
    gap: 15px;
    height: 800px;
    width: 100%; }
    @media (max-width: 991px) {
      .home-values .values-grid {
        height: 600px;
        gap: 10px; } }
    @media (max-width: 767px) {
      .home-values .values-grid {
        height: 500px;
        gap: 5px; } }
    @media (max-width: 575px) {
      .home-values .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 10px; } }
  .home-values .value-item {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 15px;
    text-align: center;
    background-color: #001325; }
    @media (max-width: 767px) {
      .home-values .value-item {
        padding: 20px 8px; } }
    @media (max-width: 575px) {
      .home-values .value-item {
        height: 250px;
        padding: 15px 10px;
        flex: none; } }
    .home-values .value-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 35%);
      transition: all 0.6s ease;
      z-index: 1; }
    .home-values .value-item .value-content {
      position: relative;
      z-index: 10;
      color: #fff;
      transition: transform 0.6s ease;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center; }
      .home-values .value-item .value-content .value-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 10px;
        background: radial-gradient(circle at 50% 120%, #00baff 0%, #004e6b 45%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center; }
        @media (max-width: 991px) {
          .home-values .value-item .value-content .value-icon {
            width: 50px;
            height: 50px; } }
        @media (max-width: 767px) {
          .home-values .value-item .value-content .value-icon {
            width: 40px;
            height: 40px; } }
        .home-values .value-item .value-content .value-icon img {
          width: 45px;
          height: 45px;
          object-fit: contain;
          filter: brightness(0) invert(1); }
          @media (max-width: 991px) {
            .home-values .value-item .value-content .value-icon img {
              width: 30px;
              height: 30px; } }
          @media (max-width: 767px) {
            .home-values .value-item .value-content .value-icon img {
              width: 24px;
              height: 24px; } }
      .home-values .value-item .value-content .value-text {
        position: relative;
        width: 100%;
        margin: 0;
        transition: all 0.6s ease; }
        .home-values .value-item .value-content .value-text::before {
          content: "";
          position: absolute;
          top: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 120%;
          height: 100%;
          background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
          transition: all 0.6s ease;
          z-index: -1; }
        .home-values .value-item .value-content .value-text .value-name {
          font-size: 22px;
          font-weight: 700;
          line-height: 1.3;
          margin-bottom: 15px;
          transition: all 0.6s ease;
          text-transform: uppercase;
          text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
          @media (max-width: 991px) {
            .home-values .value-item .value-content .value-text .value-name {
              font-size: 16px; } }
          @media (max-width: 767px) {
            .home-values .value-item .value-content .value-text .value-name {
              font-size: 13px;
              margin-bottom: 8px; } }
        .home-values .value-item .value-content .value-text .value-desc {
          font-size: 16px;
          line-height: 1.6;
          opacity: 0.9;
          transition: all 0.6s ease;
          margin: 10px 0 0; }
          @media (max-width: 991px) {
            .home-values .value-item .value-content .value-text .value-desc {
              font-size: 13px; } }
          @media (max-width: 767px) {
            .home-values .value-item .value-content .value-text .value-desc {
              font-size: 10px;
              line-height: 1.4; } }
    .home-values .value-item:hover {
      flex: 2; }
      @media (max-width: 575px) {
        .home-values .value-item:hover {
          flex: none;
          transform: translateY(-5px); } }
      .home-values .value-item:hover .value-content .value-text::before {
        width: 180%;
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 5%, rgba(0, 0, 0, 0) 70%); }
      .home-values .value-item:hover .value-content .value-name {
        color: #fff; }

.home-registration {
  position: relative;
  padding: 80px 0;
  overflow: hidden; }
  .home-registration .registration-bg {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    border-radius: 10px;
    overflow: hidden; }
    .home-registration .registration-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .home-registration .registration-bg .registration-header {
      position: relative;
      z-index: 10;
      color: #fff;
      max-width: 100%;
      text-align: center;
      width: 100%; }
      .home-registration .registration-bg .registration-header .registration-title {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 15px; }
        @media (max-width: 575px) {
          .home-registration .registration-bg .registration-header .registration-title {
            font-size: 20px; } }
      .home-registration .registration-bg .registration-header .registration-subtitle {
        font-size: 16px;
        opacity: 0.9; }
        @media (max-width: 575px) {
          .home-registration .registration-bg .registration-header .registration-subtitle {
            font-size: 12px; } }
  .home-registration .registration-form-container {
    position: relative;
    margin-top: -240px;
    z-index: 20;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden; }
    @media (max-width: 991px) {
      .home-registration .registration-form-container {
        margin-top: -150px;
        padding: 30px 20px;
        width: 95%; } }
    .home-registration .registration-form-container .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-bottom: 30px; }
      .home-registration .registration-form-container .form-grid .form-group {
        display: flex;
        flex-direction: column; }
        .home-registration .registration-form-container .form-grid .form-group.full-width {
          grid-column: span 2; }
        .home-registration .registration-form-container .form-grid .form-group label {
          font-family: "regular", sans-serif;
          font-size: 16px;
          font-weight: 700;
          color: #08192C;
          margin-bottom: 8px; }
          @media (max-width: 575px) {
            .home-registration .registration-form-container .form-grid .form-group label {
              font-size: 14px; } }
          .home-registration .registration-form-container .form-grid .form-group label span {
            color: #ff0000; }
        .home-registration .registration-form-container .form-grid .form-group input,
        .home-registration .registration-form-container .form-grid .form-group textarea {
          background: #f8f9fc;
          border: 1px solid #e2e8f0;
          padding: 12px 10px;
          border-radius: 8px;
          font-size: 15px;
          transition: all 0.3s ease;
          font-family: "regular", sans-serif; }
          .home-registration .registration-form-container .form-grid .form-group input::placeholder,
          .home-registration .registration-form-container .form-grid .form-group textarea::placeholder {
            font-weight: 400; }
          .home-registration .registration-form-container .form-grid .form-group input:focus,
          .home-registration .registration-form-container .form-grid .form-group textarea:focus {
            outline: none;
            border-color: #00baff;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(0, 186, 255, 0.1); }
          @media (max-width: 575px) {
            .home-registration .registration-form-container .form-grid .form-group input,
            .home-registration .registration-form-container .form-grid .form-group textarea {
              font-size: 14px; } }
    .home-registration .registration-form-container .btn-submit {
      background: radial-gradient(ellipse at 50% 100%, rgba(0, 86, 199, 0.7) 0%, rgba(0, 86, 199, 0) 70%), #001325;
      background-color: #001325;
      color: #fff;
      border: 4px solid #d7eaff;
      padding: 15px 40px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      width: 100%;
      justify-content: center;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(0, 86, 199, 0.15);
      position: relative;
      overflow: hidden; }
      @media (max-width: 575px) {
        .home-registration .registration-form-container .btn-submit {
          font-weight: 100;
          font-size: 12px;
          padding: 10px 40px; } }
      .home-registration .registration-form-container .btn-submit img {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1); }
      .home-registration .registration-form-container .btn-submit::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: none; }
      .home-registration .registration-form-container .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        opacity: 0.9; }
        .home-registration .registration-form-container .btn-submit:hover::after {
          left: 100%;
          transition: 0.9s; }
      .home-registration .registration-form-container .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed; }
    .home-registration .registration-form-container .form-note {
      text-align: center;
      margin-top: 15px;
      font-size: 14px;
      font-weight: 500; }
      @media (max-width: 575px) {
        .home-registration .registration-form-container .form-note {
          font-size: 12px; } }
      .home-registration .registration-form-container .form-note a {
        color: #00baff;
        text-decoration: none; }
        .home-registration .registration-form-container .form-note a:hover {
          text-decoration: underline; }
    .home-registration .registration-form-container .form-response {
      margin-top: 20px;
      padding: 12px;
      border-radius: 6px;
      display: none;
      font-size: 15px; }
      .home-registration .registration-form-container .form-response.success {
        background: #dcfce7;
        color: #166534;
        border: 1px solid #bbf7d0; }
      .home-registration .registration-form-container .form-response.error {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #fecaca; }
  @media (max-width: 991px) {
    .home-registration {
      padding: 40px 0; }
      .home-registration .registration-bg {
        height: auto;
        padding: 60px 20px 300px; }
        .home-registration .registration-bg .registration-title {
          font-size: 32px; }
      .home-registration .registration-form-container {
        margin-top: -230px;
        padding: 30px 20px;
        width: 95%;
        margin-left: auto;
        margin-right: auto; }
        .home-registration .registration-form-container .form-grid {
          display: grid; } }
      @media (max-width: 991px) and (max-width: 575px) {
        .home-registration .registration-form-container .form-grid {
          grid-template-columns: 1fr;
          gap: 10px; } }
  @media (max-width: 991px) {
          .home-registration .registration-form-container .form-grid .form-group.full-width {
            grid-column: span 2; } }
        @media (max-width: 991px) and (max-width: 575px) {
          .home-registration .registration-form-container .form-grid .form-group.full-width {
            grid-column: span 1; } }
  @media (max-width: 991px) and (max-width: 575px) {
    .home-registration .registration-form-container {
      width: 90%;
      margin-top: -280px;
      padding: 20px 15px;
      margin-left: auto;
      margin-right: auto; } }

.about-banner-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; }
  .about-banner-section .about-banner-bg {
    position: relative;
    width: 100%;
    z-index: 0; }
    .about-banner-section .about-banner-bg img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; }
  .about-banner-section .about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; }
  .about-banner-section .about-banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: center; }
  .about-banner-section .about-banner-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase; }
    @media (max-width: 991px) {
      .about-banner-section .about-banner-title {
        font-size: 32px; } }
    @media (max-width: 575px) {
      .about-banner-section .about-banner-title {
        font-size: 20px; } }

.about-breadcrumbs {
  padding: 20px 0;
  background-color: #fff; }
  .about-breadcrumbs .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
    font-size: 15px;
    color: #6c757d; }
    .about-breadcrumbs .breadcrumbs a {
      color: #6c757d;
      text-decoration: none;
      transition: color 0.3s ease;
      flex-shrink: 0; }
      .about-breadcrumbs .breadcrumbs a:hover {
        color: #004e6b; }
    .about-breadcrumbs .breadcrumbs .separator {
      color: #adb5bd;
      flex-shrink: 0; }
    .about-breadcrumbs .breadcrumbs .current {
      color: #08192c;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0; }

.about-intro-section {
  background-color: #fff; }
  .about-intro-section .about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start; }
    @media (max-width: 991px) {
      .about-intro-section .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px; } }
  .about-intro-section .about-intro-content .about-intro-title {
    font-size: 40px;
    font-weight: 700;
    color: #002347;
    margin-bottom: 25px;
    text-transform: uppercase; }
    @media (max-width: 991px) {
      .about-intro-section .about-intro-content .about-intro-title {
        font-size: 28px;
        text-align: center; } }
    @media (max-width: 575px) {
      .about-intro-section .about-intro-content .about-intro-title {
        margin-bottom: 10p x;
        font-size: 20px;
        text-align: center; } }
  .about-intro-section .about-intro-content .about-intro-text {
    font-size: 16px;
    color: #364a61;
    margin-bottom: 20px; }
    @media (max-width: 991px) {
      .about-intro-section .about-intro-content .about-intro-text {
        font-size: 16px;
        text-align: center; } }
    @media (max-width: 575px) {
      .about-intro-section .about-intro-content .about-intro-text {
        font-size: 14px; } }
    .about-intro-section .about-intro-content .about-intro-text:last-child {
      margin-bottom: 0; }
  .about-intro-section .about-intro-visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    height: 450px; }
    @media (max-width: 991px) {
      .about-intro-section .about-intro-visual {
        height: 400px; } }
    @media (max-width: 575px) {
      .about-intro-section .about-intro-visual {
        height: 280px; } }
    .about-intro-section .about-intro-visual .about-visual-slice {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      overflow: hidden; }
      .about-intro-section .about-intro-visual .about-visual-slice img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      @media (max-width: 767px) {
        .about-intro-section .about-intro-visual .about-visual-slice:nth-child(n) {
          transform: none; } }

.about-model-section {
  background-color: #fff; }
  .about-model-section .model-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; }
    .about-model-section .model-header .model-title {
      font-size: 40px;
      font-weight: 700;
      color: #08192c;
      margin-bottom: 20px;
      text-transform: uppercase; }
      @media (max-width: 991px) {
        .about-model-section .model-header .model-title {
          font-size: 28px; } }
      @media (max-width: 575px) {
        .about-model-section .model-header .model-title {
          font-size: 20px; } }
    .about-model-section .model-header .model-subtitle {
      text-align: center;
      font-size: 16px;
      color: #364a61;
      max-width: 590px;
      margin: 0 auto; }
      @media (max-width: 575px) {
        .about-model-section .model-header .model-subtitle {
          font-size: 14px; } }
  .about-model-section .about-model-slider {
    position: relative;
    padding-bottom: 40px; }
    .about-model-section .about-model-slider .swiper-pagination {
      bottom: 0; }
      @media (min-width: 992px) {
        .about-model-section .about-model-slider .swiper-pagination {
          display: none; } }
      .about-model-section .about-model-slider .swiper-pagination .swiper-pagination-bullet {
        background: #004e6b;
        opacity: 0.3;
        width: 5px;
        height: 5px; }
        .about-model-section .about-model-slider .swiper-pagination .swiper-pagination-bullet-active {
          opacity: 1;
          background: #08192c;
          width: 30px;
          border-radius: 0px; }
  .about-model-section .model-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; }
    @media (max-width: 1199px) {
      .about-model-section .model-grid {
        grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 991px) {
      .about-model-section .model-grid {
        display: flex;
        /* Swiper needs flex */
        grid-template-columns: none;
        gap: 0;
        /* Gap is handled by Swiper spaceBetween */ } }
  .about-model-section .model-item {
    background: radial-gradient(ellipse at top left, rgba(240, 246, 250, 0) 0%, rgba(240, 246, 250, 0.7) 60%);
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 20px 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: background 0.3s ease, border-color 0.3s ease;
    height: 100%; }
    @media (max-width: 991px) {
      .about-model-section .model-item {
        height: auto;
        min-height: 280px;
        /* Reduced from 320px */ } }
    @media (max-width: 575px) {
      .about-model-section .model-item {
        width: 150px;
        min-width: 150px;
        min-height: 220px;
        padding: 15px 10px; }
        .about-model-section .model-item .model-icon {
          width: 48px;
          height: 48px;
          margin-bottom: 15px; }
          .about-model-section .model-item .model-icon img {
            width: 24px;
            height: 24px; }
        .about-model-section .model-item .model-content .model-desc {
          font-size: 13px;
          margin-bottom: 10px;
          padding-bottom: 10px; }
        .about-model-section .model-item .model-content .model-name {
          font-size: 14px; } }
    .about-model-section .model-item:hover {
      background: #fff;
      border-color: #004e6b; }
    .about-model-section .model-item .model-icon {
      width: 72px;
      height: 72px;
      margin-bottom: 30px;
      background: radial-gradient(circle at 50% 120%, #00baff 0%, #004e6b 45%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative; }
      @media (max-width: 575px) {
        .about-model-section .model-item .model-icon {
          width: 50px;
          height: 50px; } }
      .about-model-section .model-item .model-icon img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        filter: brightness(0) invert(1); }
        @media (max-width: 575px) {
          .about-model-section .model-item .model-icon img {
            width: 28px;
            height: 28px; } }
    .about-model-section .model-item .model-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      .about-model-section .model-item .model-content .model-desc {
        font-size: 16px;
        color: #364a61;
        line-height: 1.5;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #e1e9f1;
        width: 100%;
        flex-grow: 1;
        display: flex;
        align-items: flex-end; }
        @media (max-width: 575px) {
          .about-model-section .model-item .model-content .model-desc {
            font-size: 12px; } }
      .about-model-section .model-item .model-content .model-name {
        font-size: 22px;
        font-weight: 700;
        color: #08192c;
        margin: 0;
        line-height: 1.3; }
        @media (max-width: 575px) {
          .about-model-section .model-item .model-content .model-name {
            font-size: 16px; } }

.about-values-section {
  background-color: #fff; }
  .about-values-section .av-header {
    text-align: center;
    margin-bottom: 50px; }
    .about-values-section .av-header .av-title {
      font-size: 40px;
      font-weight: 700;
      color: #08192c;
      text-transform: uppercase;
      line-height: 1.25;
      margin-bottom: 15px; }
      @media (max-width: 991px) {
        .about-values-section .av-header .av-title {
          font-size: 28px; } }
      @media (max-width: 575px) {
        .about-values-section .av-header .av-title {
          font-size: 20px; } }
    .about-values-section .av-header .av-subtitle {
      font-size: 18px;
      color: #364a61;
      line-height: 1.6; }
      @media (max-width: 575px) {
        .about-values-section .av-header .av-subtitle {
          font-size: 14px; } }
  .about-values-section .av-grid {
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    grid-template-rows: auto 180px auto;
    gap: 20px; }
    .about-values-section .av-grid .av-card:nth-child(1) {
      grid-column: 1;
      grid-row: 1; }
    .about-values-section .av-grid .av-separator--top {
      grid-column: 2;
      grid-row: 1; }
    .about-values-section .av-grid .av-card:nth-child(2) {
      grid-column: 3;
      grid-row: 1; }
    .about-values-section .av-grid .av-separator--left {
      grid-column: 1;
      grid-row: 2;
      height: 180px; }
    .about-values-section .av-grid .av-logo-center {
      grid-column: 2;
      grid-row: 2; }
    .about-values-section .av-grid .av-separator--right {
      grid-column: 3;
      grid-row: 2;
      height: 180px; }
    .about-values-section .av-grid .av-card:nth-child(8) {
      grid-column: 1;
      grid-row: 3; }
    .about-values-section .av-grid .av-separator--bottom {
      grid-column: 2;
      grid-row: 3; }
    .about-values-section .av-grid .av-card:nth-child(9) {
      grid-column: 3;
      grid-row: 3; }
    @media (max-width: 991px) {
      .about-values-section .av-grid {
        grid-template-columns: 1fr 120px 1fr;
        grid-template-rows: auto 120px auto;
        gap: 15px; }
        .about-values-section .av-grid .av-card:nth-child(1) {
          grid-column: 1;
          grid-row: 1; }
        .about-values-section .av-grid .av-card:nth-child(2) {
          grid-column: 3;
          grid-row: 1; }
        .about-values-section .av-grid .av-logo-center {
          display: flex;
          grid-column: 2;
          grid-row: 2; }
        .about-values-section .av-grid .av-separator--top {
          display: block;
          grid-column: 2;
          grid-row: 1; }
        .about-values-section .av-grid .av-separator--bottom {
          display: block;
          grid-column: 2;
          grid-row: 3; }
        .about-values-section .av-grid .av-separator--left {
          display: block;
          grid-column: 1;
          grid-row: 2;
          height: 120px; }
        .about-values-section .av-grid .av-separator--right {
          display: block;
          grid-column: 3;
          grid-row: 2;
          height: 120px; }
        .about-values-section .av-grid .av-card:nth-child(8) {
          grid-column: 1;
          grid-row: 3; }
        .about-values-section .av-grid .av-card:nth-child(9) {
          grid-column: 3;
          grid-row: 3; } }
    @media (max-width: 575px) {
      .about-values-section .av-grid {
        grid-template-columns: 1fr 0 1fr;
        grid-template-rows: auto 0 auto;
        gap: 8px;
        position: relative;
        padding: 10px 0; }
        .about-values-section .av-grid .av-card:nth-child(1) {
          grid-column: 1;
          grid-row: 1; }
        .about-values-section .av-grid .av-card:nth-child(2) {
          grid-column: 3;
          grid-row: 1; }
        .about-values-section .av-grid .av-card:nth-child(8) {
          grid-column: 1;
          grid-row: 3; }
        .about-values-section .av-grid .av-card:nth-child(9) {
          grid-column: 3;
          grid-row: 3; }
        .about-values-section .av-grid .av-logo-center {
          display: flex;
          grid-column: 2;
          grid-row: 2;
          justify-content: center;
          align-items: center;
          margin: 0;
          z-index: 5;
          overflow: visible; }
          .about-values-section .av-grid .av-logo-center .av-logo-box {
            width: 70px;
            height: 70px;
            min-width: 70px;
            border-radius: 50%;
            font-size: 12px;
            background: #fff;
            border: 2px solid #e1e9f1;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transform: none; }
        .about-values-section .av-grid .av-separator {
          display: none !important; } }
  .about-values-section .av-separator {
    border-radius: 8px; }
    .about-values-section .av-separator.av-separator--left {
      background: linear-gradient(to left, #f0f6fa 0%, rgba(240, 246, 250, 0) 100%); }
    .about-values-section .av-separator.av-separator--right {
      background: linear-gradient(to right, #f0f6fa 0%, rgba(240, 246, 250, 0) 100%); }
    .about-values-section .av-separator.av-separator--top {
      background: linear-gradient(to top, #f0f6fa 0%, rgba(240, 246, 250, 0) 100%);
      width: 100%;
      height: 100%; }
    .about-values-section .av-separator.av-separator--bottom {
      background: linear-gradient(to bottom, #f0f6fa 0%, rgba(240, 246, 250, 0) 100%);
      width: 100%;
      height: 100%; }
  .about-values-section .av-card {
    border: 1px solid #e0eaf0;
    border-radius: 8px;
    padding: 10px 10px; }
    @media (max-width: 575px) {
      .about-values-section .av-card {
        text-align: center; } }
    .about-values-section .av-card .av-card-icon {
      width: 56px;
      height: 56px;
      background: radial-gradient(circle at 50% 120%, #00baff 0%, #004e6b 45%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px; }
      @media (max-width: 575px) {
        .about-values-section .av-card .av-card-icon {
          margin-left: auto;
          margin-right: auto; } }
      .about-values-section .av-card .av-card-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        filter: brightness(0) invert(1); }
    .about-values-section .av-card .av-card-title {
      font-size: 22px;
      font-weight: 700;
      color: #08192c;
      text-transform: uppercase;
      line-height: 1.3; }
      @media (max-width: 575px) {
        .about-values-section .av-card .av-card-title {
          font-size: 16px; } }
    .about-values-section .av-card .av-card-desc {
      font-size: 16px;
      color: #364a61;
      margin: 0; }
      @media (max-width: 575px) {
        .about-values-section .av-card .av-card-desc {
          font-size: 12px; } }
    .about-values-section .av-card.av-card--left {
      background: #f0f6fa; }
    .about-values-section .av-card.av-card--right {
      background: #f0f6fa; }
  .about-values-section .av-logo-center {
    display: flex;
    align-items: center;
    justify-content: center; }
    .about-values-section .av-logo-center .av-logo-box {
      width: 100%;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f2f7fb;
      border: 1px solid #e1e9f1;
      border-radius: 8px;
      font-size: 18px;
      font-weight: 700;
      color: #364a61; }
      @media (max-width: 991px) {
        .about-values-section .av-logo-center .av-logo-box {
          height: 120px;
          font-size: 14px; } }

.section-about {
  padding: 60px 0; }
  @media (max-width: 575px) {
    .section-about {
      padding: 10px 0; } }

.about-work-section {
  background-color: #fff;
  overflow: hidden; }
  .about-work-section .aw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start; }
    @media (max-width: 991px) {
      .about-work-section .aw-grid {
        grid-template-columns: 1fr;
        gap: 40px; } }
  .about-work-section .aw-visual {
    padding-top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .about-work-section .aw-visual .aw-header {
      margin-bottom: 40px; }
      @media (max-width: 575px) {
        .about-work-section .aw-visual .aw-header {
          margin-bottom: 10px; } }
      @media (max-width: 991px) {
        .about-work-section .aw-visual .aw-header {
          text-align: center; } }
      .about-work-section .aw-visual .aw-header .aw-title {
        font-size: 40px;
        font-weight: 700;
        color: #08192c;
        text-transform: uppercase;
        line-height: 1.25;
        margin-bottom: 15px; }
        @media (max-width: 575px) {
          .about-work-section .aw-visual .aw-header .aw-title {
            font-size: 20px; } }
      .about-work-section .aw-visual .aw-header .aw-subtitle {
        font-size: 16px;
        color: #364a61;
        line-height: 1.6; }
        @media (max-width: 575px) {
          .about-work-section .aw-visual .aw-header .aw-subtitle {
            font-size: 14px; } }
    .about-work-section .aw-visual .aw-image {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      margin-top: auto; }
      @media (max-width: 991px) {
        .about-work-section .aw-visual .aw-image {
          display: none; } }
      .about-work-section .aw-visual .aw-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover; }
  .about-work-section .aw-content {
    position: relative; }
    @media (max-width: 991px) {
      .about-work-section .aw-content {
        width: 75%;
        margin: 0 auto; } }
    @media (max-width: 575px) {
      .about-work-section .aw-content {
        width: 100%; } }
  .about-work-section .aw-timeline {
    position: relative;
    padding-left: 40px; }
    .about-work-section .aw-timeline::before {
      content: "";
      position: absolute;
      left: 3px;
      top: 45px;
      bottom: 130px;
      width: 2px;
      background: #c5d5e2;
      z-index: 0; }
  .about-work-section .aw-step {
    position: relative;
    margin-bottom: 30px;
    z-index: 1; }
    .about-work-section .aw-step:last-child {
      margin-bottom: 0; }
    .about-work-section .aw-step::before {
      content: "";
      position: absolute;
      left: -42px;
      top: 45px;
      width: 12px;
      height: 12px;
      background: #004e6b;
      border-radius: 50%; }
    .about-work-section .aw-step .aw-step-info {
      background: #fff;
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid #f0f6fa;
      display: flex;
      flex-direction: column;
      transition: all 0.4s ease; }
      .about-work-section .aw-step .aw-step-info:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-color: transparent;
        background: radial-gradient(ellipse at 50% 100%, rgba(0, 114, 255, 0.3) 0%, rgba(0, 114, 255, 0) 80%), #000c1a; }
        .about-work-section .aw-step .aw-step-info:hover * {
          color: #fff !important; }
      .about-work-section .aw-step .aw-step-info .aw-step-head {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 12px; }
        .about-work-section .aw-step .aw-step-info .aw-step-head .aw-step-number {
          font-size: 54px;
          font-weight: 700;
          color: #08192c;
          line-height: 1;
          min-width: 60px;
          transition: color 0.3s ease; }
        .about-work-section .aw-step .aw-step-info .aw-step-head .aw-step-title {
          font-size: 22px;
          font-weight: 700;
          color: #08192c;
          margin: 0;
          line-height: 1.4;
          transition: color 0.3s ease; }
          @media (max-width: 575px) {
            .about-work-section .aw-step .aw-step-info .aw-step-head .aw-step-title {
              font-size: 16px; } }
      .about-work-section .aw-step .aw-step-info .aw-step-desc {
        font-size: 16px;
        color: #364a61;
        line-height: 1.6;
        margin: 0;
        transition: color 0.3s ease;
        text-align: left; }
        @media (max-width: 575px) {
          .about-work-section .aw-step .aw-step-info .aw-step-desc {
            font-size: 14px; } }
    @media (max-width: 575px) {
      .about-work-section .aw-step .aw-step-info {
        padding: 20px; }
        .about-work-section .aw-step .aw-step-info .aw-step-head {
          align-items: flex-start;
          gap: 10px; }
          .about-work-section .aw-step .aw-step-info .aw-step-head .aw-step-number {
            font-size: 44px; } }

.services-banner-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; }
  .services-banner-section .services-banner-bg {
    position: relative;
    width: 100%;
    z-index: 0; }
    .services-banner-section .services-banner-bg img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; }
  .services-banner-section .services-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; }
  .services-banner-section .services-banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    padding: 0 15px; }
  .services-banner-section .services-banner-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase; }
    @media (max-width: 991px) {
      .services-banner-section .services-banner-title {
        font-size: 32px; } }
    @media (max-width: 575px) {
      .services-banner-section .services-banner-title {
        font-size: 20px; } }

.services-breadcrumbs {
  padding: 20px 0;
  background-color: transparent;
  border-bottom: none; }
  .services-breadcrumbs .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
    font-size: 15px;
    color: #6c757d; }
    .services-breadcrumbs .breadcrumbs a {
      color: #364a61;
      text-decoration: none;
      transition: color 0.3s ease;
      flex-shrink: 0; }
      .services-breadcrumbs .breadcrumbs a:hover {
        color: #004e6b; }
    .services-breadcrumbs .breadcrumbs .separator {
      color: #adb5bd;
      flex-shrink: 0; }
    .services-breadcrumbs .breadcrumbs .current {
      color: #08192c;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0; }

.services-scope {
  background-color: #fff; }
  .services-scope .scope-header {
    margin-bottom: 50px;
    text-align: center; }
    .services-scope .scope-header .scope-title {
      font-size: 36px;
      font-weight: 700;
      color: #08192c;
      margin-bottom: 15px;
      text-transform: uppercase; }
      @media (max-width: 575px) {
        .services-scope .scope-header .scope-title {
          font-size: 20px; } }
    .services-scope .scope-header .scope-subtitle {
      font-size: 18px;
      color: #666;
      max-width: 550px;
      margin: 0 auto; }
      @media (max-width: 575px) {
        .services-scope .scope-header .scope-subtitle {
          font-size: 14px; } }
  .services-scope .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; }
    @media (max-width: 991px) {
      .services-scope .services-grid {
        display: flex;
        /* Swiper needs flex */
        grid-template-columns: none;
        gap: 0;
        /* Gap is handled by Swiper spaceBetween */ } }
  .services-scope .services-swiper {
    position: relative;
    padding-bottom: 40px; }
    .services-scope .services-swiper .swiper-pagination {
      bottom: 0; }
      @media (min-width: 992px) {
        .services-scope .services-swiper .swiper-pagination {
          display: none; } }
      .services-scope .services-swiper .swiper-pagination .swiper-pagination-bullet {
        background: #004e6b;
        opacity: 0.3;
        width: 5px;
        height: 5px;
        transition: all 0.3s ease; }
        .services-scope .services-swiper .swiper-pagination .swiper-pagination-bullet-active {
          opacity: 1;
          background: #08192c;
          width: 30px;
          border-radius: 0px; }
  .services-scope .service-item {
    position: relative;
    text-align: center; }
    .services-scope .service-item:hover .service-image img {
      transform: scale(1.05); }
    .services-scope .service-item:hover .service-label {
      color: #004e6b; }
    .services-scope .service-item .service-image {
      width: 100%;
      height: 205px;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 15px; }
      @media (max-width: 575px) {
        .services-scope .service-item .service-image {
          height: 115px; } }
      .services-scope .service-item .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease; }
    .services-scope .service-item .service-label {
      color: #08192c;
      font-weight: 700;
      margin: 0;
      transition: color 0.3s ease;
      text-transform: uppercase;
      font-size: 18px; }

.services-details-section {
  background-color: #fff;
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .services-details-section {
      padding-bottom: 20px; } }
  .services-details-section .details-list {
    display: flex;
    flex-direction: column;
    gap: 80px; }
    @media (max-width: 767px) {
      .services-details-section .details-list {
        gap: 40px; } }
  .services-details-section .detail-item {
    display: flex;
    align-items: center;
    gap: 60px; }
    .services-details-section .detail-item:nth-child(even) {
      flex-direction: row-reverse; }
    @media (max-width: 991px) {
      .services-details-section .detail-item {
        gap: 20px; } }
    @media (max-width: 767px) {
      .services-details-section .detail-item {
        flex-direction: column !important;
        gap: 20px;
        text-align: center; } }
    .services-details-section .detail-item .detail-image {
      flex: 0 0 55%;
      height: 382px;
      position: relative;
      overflow: hidden; }
      @media (max-width: 1199px) {
        .services-details-section .detail-item .detail-image {
          flex: 0 0 45%; } }
      @media (max-width: 991px) {
        .services-details-section .detail-item .detail-image {
          flex: 0 0 58%;
          height: 250px; } }
      @media (max-width: 767px) {
        .services-details-section .detail-item .detail-image {
          width: 100%;
          max-width: 100%; } }
      .services-details-section .detail-item .detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
        @media (max-width: 767px) {
          .services-details-section .detail-item .detail-image img {
            height: 205px !important;
            border-radius: 8px !important; } }
      .services-details-section .detail-item .detail-image .detail-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 90%;
        text-align: center;
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
        z-index: 2;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5); }
        .services-details-section .detail-item .detail-image .detail-title::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 320px;
          height: 320px;
          background: radial-gradient(circle, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 70%);
          z-index: -1;
          pointer-events: none; }
          @media (max-width: 991px) {
            .services-details-section .detail-item .detail-image .detail-title::before {
              width: 280px;
              height: 280px; } }
          @media (max-width: 575px) {
            .services-details-section .detail-item .detail-image .detail-title::before {
              width: 220px;
              height: 220px; } }
        @media (max-width: 991px) {
          .services-details-section .detail-item .detail-image .detail-title {
            font-size: 24px; } }
        @media (max-width: 575px) {
          .services-details-section .detail-item .detail-image .detail-title {
            font-size: 18px; } }
    .services-details-section .detail-item .detail-info {
      flex: 1; }
      .services-details-section .detail-item .detail-info .detail-intro {
        font-size: 18px;
        font-weight: 700;
        color: #08192c;
        margin-bottom: 10px; }
        @media (max-width: 575px) {
          .services-details-section .detail-item .detail-info .detail-intro {
            text-align: left;
            font-size: 16px; } }
      .services-details-section .detail-item .detail-info .detail-desc {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 18px;
        color: #364a61;
        line-height: 1.4; }
        @media (max-width: 575px) {
          .services-details-section .detail-item .detail-info .detail-desc {
            text-align: left;
            font-size: 14px !important; } }
        @media (max-width: 991px) {
          .services-details-section .detail-item .detail-info .detail-desc {
            font-size: 18px;
            text-align: justify; } }
        .services-details-section .detail-item .detail-info .detail-desc li {
          position: relative;
          padding-left: 15px; }
          .services-details-section .detail-item .detail-info .detail-desc li::before {
            content: "";
            position: absolute;
            left: 2px;
            top: 10px;
            width: 5px;
            height: 5px;
            background-color: #004e6b;
            border-radius: 50%; }
            @media (max-width: 576px) {
              .services-details-section .detail-item .detail-info .detail-desc li::before {
                top: 6px; } }
          .services-details-section .detail-item .detail-info .detail-desc li:last-child {
            margin-bottom: 0; }

.page-content.section-padding {
  padding-top: 0; }

.services-faq-section .faq-header {
  margin-bottom: 50px;
  text-align: center; }
  .services-faq-section .faq-header .faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #08192c;
    margin-bottom: 15px;
    text-transform: uppercase; }
    @media (max-width: 991px) {
      .services-faq-section .faq-header .faq-title {
        font-size: 28px; } }
    @media (max-width: 575px) {
      .services-faq-section .faq-header .faq-title {
        font-size: 20px; } }
  .services-faq-section .faq-header .faq-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto; }
    @media (max-width: 575px) {
      .services-faq-section .faq-header .faq-subtitle {
        font-size: 14px; } }
.services-faq-section .faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px; }
.services-faq-section .faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent; }
  .services-faq-section .faq-item:hover, .services-faq-section .faq-item.active {
    border-color: #0056c7; }
  .services-faq-section .faq-item.active .faq-question {
    border-bottom: 1px solid #f0f0f0; }
    .services-faq-section .faq-item.active .faq-question .faq-icon {
      background-color: #e8f0f7;
      color: #001325; }
  .services-faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px; }
  .services-faq-section .faq-item .faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    gap: 20px; }
    .services-faq-section .faq-item .faq-question span {
      font-size: 18px;
      font-weight: 700;
      color: #08192c;
      line-height: 1.4; }
      @media (max-width: 575px) {
        .services-faq-section .faq-item .faq-question span {
          font-size: 16px; } }
    .services-faq-section .faq-item .faq-question .faq-icon {
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      background-color: #e6ebf4;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #001325;
      transition: all 0.3s ease; }
      .services-faq-section .faq-item .faq-question .faq-icon i {
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: normal; }
  .services-faq-section .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .services-faq-section .faq-item .faq-answer .answer-content {
      padding: 20px 25px 0;
      font-size: 16px;
      color: #364a61;
      line-height: 1.6; }

.blog-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; }
  .blog-banner-section .blog-banner-bg {
    position: relative;
    width: 100%;
    z-index: 0; }
    .blog-banner-section .blog-banner-bg img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; }
  .blog-banner-section .blog-banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    padding: 0 15px; }
  .blog-banner-section .blog-banner-content {
    text-align: center;
    width: 100%; }
  .blog-banner-section .blog-banner-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }
    @media (max-width: 991px) {
      .blog-banner-section .blog-banner-title {
        font-size: 32px; } }
    @media (max-width: 575px) {
      .blog-banner-section .blog-banner-title {
        font-size: 20px; } }

.blog-breadcrumbs {
  padding: 20px 0; }
  .blog-breadcrumbs .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
    font-size: 14px;
    color: #666; }
    .blog-breadcrumbs .breadcrumbs a {
      color: #364a61;
      text-decoration: none;
      flex-shrink: 0; }
      .blog-breadcrumbs .breadcrumbs a:hover {
        color: #ff3b3b; }
    .blog-breadcrumbs .breadcrumbs .separator {
      color: #ccc;
      flex-shrink: 0; }
    .blog-breadcrumbs .breadcrumbs .current {
      color: #08192c;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0;
      font-weight: 500; }

.blog-list-section {
  background-color: #fcfcfc;
  padding: 80px 0; }
  @media (max-width: 575px) {
    .blog-list-section {
      padding: 10px 0; } }
  .blog-list-section .blog-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px; }
    .blog-list-section .blog-list-header .blog-list-title {
      font-size: 40px;
      font-weight: 700;
      color: #08192c;
      text-transform: uppercase;
      margin: 0; }
      @media (max-width: 991px) {
        .blog-list-section .blog-list-header .blog-list-title {
          font-size: 32px; } }
      @media (max-width: 575px) {
        .blog-list-section .blog-list-header .blog-list-title {
          font-size: 20px; } }
    .blog-list-section .blog-list-header .blog-filter-wrapper {
      display: flex;
      align-items: center;
      gap: 15px; }
      @media (max-width: 575px) {
        .blog-list-section .blog-list-header .blog-filter-wrapper {
          gap: 10px; } }
    .blog-list-section .blog-list-header .active-filter-tag {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #f0f6fa;
      padding: 6px 14px;
      border-radius: 100px;
      color: #08192c;
      font-size: 14px;
      font-weight: 600;
      border: 1px solid #d9e1e9;
      transition: all 0.3s ease; }
      .blog-list-section .blog-list-header .active-filter-tag:hover {
        background: #e1e9f1;
        border-color: #004e6b; }
      .blog-list-section .blog-list-header .active-filter-tag .remove-filter {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8d1919;
        font-size: 12px;
        transition: transform 0.2s ease; }
        .blog-list-section .blog-list-header .active-filter-tag .remove-filter:hover {
          transform: scale(1.2);
          color: #e82424; }
      @media (max-width: 575px) {
        .blog-list-section .blog-list-header .active-filter-tag {
          padding: 4px 10px;
          font-size: 11px; } }
    .blog-list-section .blog-list-header .blog-filter {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: all 0.3s ease; }
      .blog-list-section .blog-list-header .blog-filter .filter-text {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right; }
        .blog-list-section .blog-list-header .blog-filter .filter-text .filter-label {
          font-size: 14px;
          color: #6c757d;
          font-weight: 500;
          line-height: 1.2; }
        .blog-list-section .blog-list-header .blog-filter .filter-text .active-filter-info {
          font-size: 14px;
          color: #08192c;
          font-weight: 500;
          line-height: 1.2;
          margin-top: 2px; }
      .blog-list-section .blog-list-header .blog-filter:hover .filter-icon {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }
      .blog-list-section .blog-list-header .blog-filter .filter-icon {
        width: 45px;
        height: 45px;
        background: linear-gradient(to bottom, #001325 45%, #0056c7);
        border: 2px solid #d7eaff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 0 15px rgba(0, 86, 199, 0.15); }
        .blog-list-section .blog-list-header .blog-filter .filter-icon i {
          font-size: 20px;
          color: #fff; }
        @media (max-width: 575px) {
          .blog-list-section .blog-list-header .blog-filter .filter-icon {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            border-width: 1px; }
            .blog-list-section .blog-list-header .blog-filter .filter-icon i {
              font-size: 16px; } }
      @media (max-width: 575px) {
        .blog-list-section .blog-list-header .blog-filter {
          gap: 8px; }
          .blog-list-section .blog-list-header .blog-filter .filter-text .filter-label,
          .blog-list-section .blog-list-header .blog-filter .filter-text .active-filter-info {
            font-size: 12px; } }
    @media (max-width: 767px) {
      .blog-list-section .blog-list-header {
        gap: 0px; }
        .blog-list-section .blog-list-header .blog-list-title {
          font-size: 20px; } }
  .blog-list-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; }
    @media (max-width: 991px) {
      .blog-list-section .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px; } }
    @media (max-width: 575px) {
      .blog-list-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px; } }

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0; }
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); }
    .blog-card:hover .blog-card-image img {
      transform: scale(1.05); }
  .blog-card .blog-card-image {
    width: 100%;
    height: 360px;
    overflow: hidden; }
    @media (max-width: 991px) {
      .blog-card .blog-card-image {
        height: 250px; } }
    @media (max-width: 575px) {
      .blog-card .blog-card-image {
        height: 180px; } }
    .blog-card .blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease; }
  .blog-card .blog-card-content {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column; }
    .blog-card .blog-card-content .blog-card-title {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.4;
      height: 2.8em;
      margin-bottom: 12px;
      color: #08192c;
      text-transform: uppercase;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis; }
      @media (max-width: 575px) {
        .blog-card .blog-card-content .blog-card-title {
          font-size: 14px; } }
      .blog-card .blog-card-content .blog-card-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease; }
        .blog-card .blog-card-content .blog-card-title a:hover {
          color: #00469b; }
    .blog-card .blog-card-content .blog-card-excerpt {
      font-size: 16px;
      color: #666;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
      @media (max-width: 575px) {
        .blog-card .blog-card-content .blog-card-excerpt {
          font-size: 14px; } }
    .blog-card .blog-card-content .blog-card-footer {
      margin-top: auto;
      padding-top: 0;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .blog-card .blog-card-content .blog-card-footer .blog-card-date {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #888;
        font-size: 14px; }
        .blog-card .blog-card-content .blog-card-footer .blog-card-date i {
          font-size: 16px;
          color: #888; }
          @media (max-width: 575px) {
            .blog-card .blog-card-content .blog-card-footer .blog-card-date i {
              font-size: 14px; } }
      .blog-card .blog-card-content .blog-card-footer .btn-readmore {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #00469b;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease; }
        @media (max-width: 575px) {
          .blog-card .blog-card-content .blog-card-footer .btn-readmore {
            display: none; } }
        .blog-card .blog-card-content .blog-card-footer .btn-readmore i {
          font-size: 16px;
          transition: transform 0.3s ease;
          display: inline-block; }
        .blog-card .blog-card-content .blog-card-footer .btn-readmore:hover {
          color: #003270; }
          .blog-card .blog-card-content .blog-card-footer .btn-readmore:hover img {
            transform: translateX(4px); }

.blog-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 12px; }
  @media (max-width: 575px) {
    .blog-pagination {
      margin-top: 20px; } }
  .blog-pagination .page-numbers {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    color: #08192c;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease; }
    .blog-pagination .page-numbers.current {
      background: #08192c;
      border-color: #08192c;
      color: #fff; }
    .blog-pagination .page-numbers:hover:not(.current) {
      border-color: #08192c;
      color: #08192c; }
    .blog-pagination .page-numbers.prev, .blog-pagination .page-numbers.next {
      font-size: 16px;
      color: #08192c; }

/* Filter Modal Styles */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease; }
  .modal-backdrop.active {
    opacity: 1;
    visibility: visible; }

.modal-container {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: all 0.3s ease; }
  @media (max-width: 575px) {
    .modal-container {
      max-width: 300px;
      width: 100%; } }
  .active .modal-container {
    transform: translateY(0); }

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px; }
  .modal-header .modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #08192c;
    margin: 0; }
  .modal-header .modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease; }
    .modal-header .modal-close:hover {
      color: #333; }

.filter-group {
  margin-bottom: 25px; }
  .filter-group .filter-label {
    font-size: 16px;
    font-weight: 700;
    color: #08192c;
    margin-bottom: 15px; }

.sort-options {
  display: flex;
  gap: 20px; }
  .sort-options .sort-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #555;
    cursor: pointer; }
    .sort-options .sort-option input {
      display: none; }
    .sort-options .sort-option .radio-custom {
      width: 20px;
      height: 20px;
      border: 2px solid #e0e0e0;
      border-radius: 50%;
      position: relative;
      transition: all 0.3s ease; }
      .sort-options .sort-option .radio-custom::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        background: #fff;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.3s ease; }
    .sort-options .sort-option input:checked + .radio-custom {
      border-color: #008a4e;
      background: #008a4e; }
      .sort-options .sort-option input:checked + .radio-custom::after {
        transform: translate(-50%, -50%) scale(1); }

.category-select-wrapper {
  position: relative; }
  .category-select-wrapper .custom-select {
    position: relative;
    width: 100%; }
    .category-select-wrapper .custom-select .select-selected {
      background: #f4f7fb;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      padding: 12px 16px;
      padding-right: 40px;
      font-size: 15px;
      color: #333;
      cursor: pointer;
      position: relative; }
      .category-select-wrapper .custom-select .select-selected::after {
        content: "\F229";
        /* Bootstrap icon chevron-down */
        font-family: "bootstrap-icons" !important;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 12px; }
      .category-select-wrapper .custom-select .select-selected.select-arrow-active::after {
        transform: translateY(-50%) rotate(180deg); }
    .category-select-wrapper .custom-select .select-items {
      position: absolute;
      background: #fff;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      border: 1px solid #e2e8f0;
      border-top: none;
      border-radius: 0 0 8px 8px;
      max-height: 200px;
      overflow-y: auto;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
      .category-select-wrapper .custom-select .select-items div {
        color: #333;
        padding: 12px 16px;
        cursor: pointer;
        font-size: 14px;
        transition: background 0.3s ease; }
        .category-select-wrapper .custom-select .select-items div:hover {
          background: #f4f7fb; }
        .category-select-wrapper .custom-select .select-items div.same-as-selected {
          background: #e2e8f0;
          font-weight: 600; }
    .category-select-wrapper .custom-select .select-hide {
      display: none; }

.modal-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 40px; }
  .modal-footer button {
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease; }
  .modal-footer .btn-reset {
    background: #f4f7fb;
    border: none;
    color: #475569; }
    .modal-footer .btn-reset:hover {
      background: #e2e8f0; }
  .modal-footer .btn-apply {
    background: radial-gradient(ellipse at 50% 100%, #00469b 0%, rgba(0, 70, 155, 0) 75%), #001325;
    background-color: #001325;
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 19, 37, 0.2); }
    .modal-footer .btn-apply:hover {
      opacity: 0.9;
      transform: translateY(-2px); }

.contact-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; }
  .contact-banner-section .contact-banner-bg {
    position: relative;
    width: 100%;
    z-index: 0; }
    .contact-banner-section .contact-banner-bg img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; }
  .contact-banner-section .contact-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; }
  .contact-banner-section .contact-banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    padding: 0 15px; }
  .contact-banner-section .contact-banner-content {
    text-align: center;
    width: 100%; }
  .contact-banner-section .contact-banner-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    font-style: normal;
    font-family: "regular", sans-serif;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }
    @media (max-width: 991px) {
      .contact-banner-section .contact-banner-title {
        font-size: 32px; } }
    @media (max-width: 575px) {
      .contact-banner-section .contact-banner-title {
        font-size: 20px; } }

.contact-breadcrumbs {
  padding: 20px 0; }
  .contact-breadcrumbs .breadcrumbs {
    display: flex;
    font-family: "regular", sans-serif;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
    font-size: 14px;
    color: #666; }
    .contact-breadcrumbs .breadcrumbs a {
      color: #364a61;
      text-decoration: none;
      flex-shrink: 0; }
      .contact-breadcrumbs .breadcrumbs a:hover {
        color: #ff3b3b; }
    .contact-breadcrumbs .breadcrumbs .separator {
      color: #ccc;
      flex-shrink: 0; }
    .contact-breadcrumbs .breadcrumbs .current {
      color: #08192c;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0;
      font-weight: 500; }

.contact-main-section {
  background: #fff;
  padding: 80px 0; }
  @media (max-width: 575px) {
    .contact-main-section {
      padding: 20px 0; } }

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start; }
  @media (max-width: 991px) {
    .contact-layout-grid {
      grid-template-columns: 1fr;
      gap: 40px; } }

.contact-info-side .contact-info-header {
  margin-bottom: 40px; }
  .contact-info-side .contact-info-header .contact-info-title {
    font-size: 40px;
    font-weight: 700;
    color: #08192c;
    margin-bottom: 15px;
    text-transform: uppercase; }
    @media (max-width: 991px) {
      .contact-info-side .contact-info-header .contact-info-title {
        font-size: 32px; } }
    @media (max-width: 575px) {
      .contact-info-side .contact-info-header .contact-info-title {
        font-size: 20px; } }
  .contact-info-side .contact-info-header .contact-info-subtitle {
    font-size: 18px;
    font-family: "regular", sans-serif;
    color: #364a61;
    line-height: 1.6; }
    @media (max-width: 575px) {
      .contact-info-side .contact-info-header .contact-info-subtitle {
        font-size: 14px; } }
.contact-info-side .contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px; }
  @media (max-width: 991px) {
    .contact-info-side .contact-info-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 15px; } }
  @media (max-width: 767px) {
    .contact-info-side .contact-info-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (max-width: 575px) {
    .contact-info-side .contact-info-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px; } }

.contact-info-box {
  background: #fff;
  padding: 20px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0; }
  @media (max-width: 991px) {
    .contact-info-box {
      padding: 10px 8px; } }
  @media (max-width: 575px) {
    .contact-info-box {
      padding: 5px 5px; } }
  .contact-info-box:hover {
    transform: translateY(-5px); }
  .contact-info-box .info-box-icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .contact-info-box .info-box-icon img {
      max-width: 40px;
      max-height: 40px;
      object-fit: contain;
      /* Filter to exactly #08192c from any color */
      filter: brightness(0) saturate(100%) invert(8%) sepia(21%) saturate(3665%) hue-rotate(174deg) brightness(96%) contrast(97%); }
    .contact-info-box .info-box-icon i {
      font-size: 24px;
      color: #08192c; }
  .contact-info-box .info-box-label {
    font-size: 16px;
    font-family: "regular", sans-serif;
    font-weight: 400;
    color: #08192c;
    margin-bottom: 8px; }
  .contact-info-box .info-box-value {
    font-size: 16px;
    font-family: "regular", sans-serif;
    color: #364a61;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word; }

.contact-form-side .contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0; }
  @media (max-width: 575px) {
    .contact-form-side .contact-form-card {
      padding: 10px; } }
.contact-form-side .consultation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; }
  @media (max-width: 575px) {
    .contact-form-side .consultation-form .form-row {
      grid-template-columns: 1fr;
      gap: 0; } }
.contact-form-side .consultation-form .form-group {
  margin-bottom: 20px; }
  .contact-form-side .consultation-form .form-group label {
    display: block;
    font-size: 14px;
    font-family: "regular", sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px; }
    .contact-form-side .consultation-form .form-group label span {
      color: #ff3b3b; }
  .contact-form-side .consultation-form .form-group input,
  .contact-form-side .consultation-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: "regular", sans-serif;
    background: #f9fbff;
    transition: all 0.3s ease; }
    .contact-form-side .consultation-form .form-group input:focus,
    .contact-form-side .consultation-form .form-group textarea:focus {
      outline: none;
      border-color: #08192c;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(0, 26, 51, 0.05); }
.contact-form-side .consultation-form .form-footer {
  margin-top: 30px; }
  .contact-form-side .consultation-form .form-footer .btn-submit {
    width: 100%;
    padding: 16px 30px;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 86, 199, 0.7) 0%, rgba(0, 86, 199, 0) 70%), #001325;
    background-color: #001325;
    color: #fff;
    border: 4px solid #d7eaff;
    border-radius: 8px;
    font-size: 16px;
    font-family: "regular", sans-serif;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 86, 199, 0.15);
    position: relative;
    overflow: hidden; }
    @media (max-width: 575px) {
      .contact-form-side .consultation-form .form-footer .btn-submit {
        font-size: 12px;
        padding: 10px 30px; } }
    .contact-form-side .consultation-form .form-footer .btn-submit::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: none; }
    .contact-form-side .consultation-form .form-footer .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      opacity: 0.9; }
      .contact-form-side .consultation-form .form-footer .btn-submit:hover::after {
        left: 100%;
        transition: 0.9s; }
    .contact-form-side .consultation-form .form-footer .btn-submit img {
      width: 20px;
      height: 20px;
      filter: brightness(0) invert(1); }
    .contact-form-side .consultation-form .form-footer .btn-submit:disabled {
      opacity: 0.7;
      cursor: not-allowed; }
  .contact-form-side .consultation-form .form-footer .form-response {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    display: none;
    font-size: 15px;
    text-align: center; }
    .contact-form-side .consultation-form .form-footer .form-response.success {
      background: #dcfce7;
      color: #166534;
      border: 1px solid #bbf7d0; }
    .contact-form-side .consultation-form .form-footer .form-response.error {
      background: #fee2e2;
      color: #991b1b;
      border: 1px solid #fecaca; }
  .contact-form-side .consultation-form .form-footer .form-note {
    margin-top: 20px;
    font-size: 14px;
    font-family: "regular", sans-serif;
    text-align: center;
    font-weight: 500; }
    .contact-form-side .consultation-form .form-footer .form-note a {
      color: #00bfff;
      text-decoration: none; }
      .contact-form-side .consultation-form .form-footer .form-note a:hover {
        text-decoration: underline; }

.contact-map-section .contact-map-title {
  font-size: 40px;
  font-weight: 700;
  color: #08192c;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase; }
  @media (max-width: 991px) {
    .contact-map-section .contact-map-title {
      font-size: 28px; } }
  @media (max-width: 575px) {
    .contact-map-section .contact-map-title {
      font-size: 20px; } }
.contact-map-section .map-iframe-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0; }
  .contact-map-section .map-iframe-wrapper iframe {
    display: block;
    width: 100%; }

strong {
  font-family: "bai jamjuree", sans-serif; }

.single-post-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; }
  .single-post-banner .single-post-banner-bg {
    position: relative;
    width: 100%;
    z-index: 0; }
    .single-post-banner .single-post-banner-bg img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; }
  .single-post-banner .single-post-banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    padding: 0 15px; }
  .single-post-banner .single-post-banner-content {
    text-align: center;
    width: 100%; }
  .single-post-banner .single-post-banner-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }
    @media (max-width: 991px) {
      .single-post-banner .single-post-banner-title {
        font-size: 32px; } }
    @media (max-width: 575px) {
      .single-post-banner .single-post-banner-title {
        font-size: 20px; } }

.single-post-breadcrumbs {
  padding: 20px 0; }
  .single-post-breadcrumbs .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
    font-size: 14px;
    color: #666; }
    .single-post-breadcrumbs .breadcrumbs a {
      color: #08192c;
      text-decoration: none;
      transition: color 0.3s ease;
      flex-shrink: 0; }
      .single-post-breadcrumbs .breadcrumbs a:hover {
        color: #00469b; }
    .single-post-breadcrumbs .breadcrumbs .separator {
      color: #ccc;
      flex-shrink: 0; }
    .single-post-breadcrumbs .breadcrumbs .current {
      color: #999;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0; }

.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: flex-start; }
  @media (max-width: 575px) {
    .single-post-layout {
      grid-template-columns: 1fr;
      gap: 20px !important; } }
  @media (max-width: 991px) {
    .single-post-layout {
      grid-template-columns: 1fr;
      gap: 40px; } }

.post-main-column .post-header {
  margin-bottom: 30px; }
  @media (max-width: 575px) {
    .post-main-column .post-header {
      margin-bottom: 10px; } }
  .post-main-column .post-header .post-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px; }
    .post-main-column .post-header .post-meta span {
      display: flex;
      align-items: center;
      gap: 8px; }
      .post-main-column .post-header .post-meta span i {
        font-size: 16px; }
  .post-main-column .post-header .post-title {
    font-size: 28px;
    font-weight: 700;
    color: #08192c;
    margin-bottom: 0;
    line-height: 1.3;
    text-transform: uppercase; }
    @media (max-width: 767px) {
      .post-main-column .post-header .post-title {
        font-size: 20px; } }
.post-main-column .post-featured-image {
  margin-bottom: 40px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
  .post-main-column .post-featured-image img {
    width: 100%;
    height: auto;
    display: block; }
.post-main-column .post-body-content {
  font-size: 16px;
  line-height: 1.2;
  color: #27364B;
  font-family: "regular", sans-serif; }
  .post-main-column .post-body-content p {
    margin-bottom: 20px; }
  .post-main-column .post-body-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; }
  .post-main-column .post-body-content h2,
  .post-main-column .post-body-content h3,
  .post-main-column .post-body-content h4 {
    color: #08192c;
    margin-top: 35px;
    margin-bottom: 20px; }
.post-main-column .post-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee; }
  .post-main-column .post-footer .post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px; }
    @media (max-width: 575px) {
      .post-main-column .post-footer .post-navigation {
        flex-direction: column; } }
    .post-main-column .post-footer .post-navigation .nav-links {
      display: flex;
      width: 100%;
      justify-content: space-between;
      gap: 20px; }
      @media (max-width: 575px) {
        .post-main-column .post-footer .post-navigation .nav-links {
          flex-direction: column; } }
    .post-main-column .post-footer .post-navigation .nav-previous,
    .post-main-column .post-footer .post-navigation .nav-next {
      flex: 1; }
      .post-main-column .post-footer .post-navigation .nav-previous a,
      .post-main-column .post-footer .post-navigation .nav-next a {
        display: block;
        padding: 15px;
        background: #f9fbff;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0; }
        .post-main-column .post-footer .post-navigation .nav-previous a:hover,
        .post-main-column .post-footer .post-navigation .nav-next a:hover {
          background: #fff;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          border-color: #00469b; }
    .post-main-column .post-footer .post-navigation .nav-subtitle {
      display: block;
      font-size: 12px;
      color: #999;
      margin-bottom: 5px; }
    .post-main-column .post-footer .post-navigation .nav-title {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #08192c;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }

.post-sidebar .sidebar-widget {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none; }
  .post-sidebar .sidebar-widget .widget-title {
    font-size: 24px;
    font-weight: 700;
    color: #08192c;
    margin-bottom: 25px;
    text-transform: uppercase; }
    @media (max-width: 991px) {
      .post-sidebar .sidebar-widget .widget-title {
        font-size: 20px; } }
.post-sidebar .related-posts-list {
  display: flex;
  flex-direction: column;
  gap: 30px; }
  @media (max-width: 991px) {
    .post-sidebar .related-posts-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px; } }
  @media (max-width: 767px) {
    .post-sidebar .related-posts-list {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 575px) {
    .post-sidebar .related-posts-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px; } }
  .post-sidebar .related-posts-list .blog-card {
    width: 100%;
    height: 100%; }
.post-sidebar .related-pagination {
  display: none; }
  @media (max-width: 575px) {
    .post-sidebar .related-pagination {
      display: flex;
      margin-top: 40px;
      justify-content: center; } }

.policy-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; }
  .policy-banner-section .policy-banner-bg {
    position: relative;
    width: 100%;
    z-index: 0; }
    .policy-banner-section .policy-banner-bg img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; }
  .policy-banner-section .policy-banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    padding: 0 15px; }
  .policy-banner-section .policy-banner-content {
    text-align: center;
    width: 100%; }
  .policy-banner-section .policy-banner-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    font-style: normal;
    font-family: "bai jamjuree", sans-serif;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase; }
    @media (max-width: 991px) {
      .policy-banner-section .policy-banner-title {
        font-size: 32px; } }
    @media (max-width: 575px) {
      .policy-banner-section .policy-banner-title {
        font-size: 20px; } }

.policy-breadcrumbs {
  padding: 20px 0; }
  .policy-breadcrumbs .breadcrumbs {
    display: flex;
    font-family: "regular", sans-serif;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
    font-size: 14px;
    color: #666; }
    .policy-breadcrumbs .breadcrumbs a {
      color: #08192c;
      text-decoration: none;
      flex-shrink: 0; }
      .policy-breadcrumbs .breadcrumbs a:hover {
        color: #ff3b3b; }
    .policy-breadcrumbs .breadcrumbs .separator {
      color: #ccc;
      flex-shrink: 0; }
    .policy-breadcrumbs .breadcrumbs .current {
      color: #999;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0; }

.policy-main-section {
  padding: 60px 0 100px;
  background: #fff; }
  .policy-main-section .policy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    font-family: "regular", sans-serif;
    line-height: 1.8;
    color: #364a61; }
    .policy-main-section .policy-content-wrapper h2 {
      font-size: 28px;
      color: #08192c;
      margin: 40px 0 20px;
      font-weight: 700; }
      .policy-main-section .policy-content-wrapper h2:first-child {
        margin-top: 0; }
    .policy-main-section .policy-content-wrapper h3 {
      font-size: 22px;
      color: #08192c;
      margin: 30px 0 15px;
      font-weight: 600;
      font-family: "bai jamjuree", sans-serif;
      font-size: 24px; }
      @media (max-width: 575px) {
        .policy-main-section .policy-content-wrapper h3 {
          font-size: 20px !important; } }
    .policy-main-section .policy-content-wrapper p {
      margin-bottom: 20px; }
    .policy-main-section .policy-content-wrapper ul,
    .policy-main-section .policy-content-wrapper ol {
      margin-bottom: 20px;
      padding-left: 20px; }
      .policy-main-section .policy-content-wrapper ul li,
      .policy-main-section .policy-content-wrapper ol li {
        margin-bottom: 10px; }
        @media (max-width: 768px) {
          .policy-main-section .policy-content-wrapper ul li,
          .policy-main-section .policy-content-wrapper ol li {
            font-size: 14px; } }
    .policy-main-section .policy-content-wrapper strong {
      color: #08192c;
      font-weight: 700;
      font-family: "bai jamjuree", sans-serif;
      font-size: 24px; }
      @media (max-width: 575px) {
        .policy-main-section .policy-content-wrapper strong {
          font-size: 20px !important; } }
    .policy-main-section .policy-content-wrapper span[style*="font-size: 18pt"] {
      font-size: 24px !important; }
      @media (max-width: 575px) {
        .policy-main-section .policy-content-wrapper span[style*="font-size: 18pt"] {
          font-size: 20px !important; } }

/*# sourceMappingURL=styles.css.map */
