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

@font-face {
  font-family: "GeneralSans";
  src:
    url("../fonts/GeneralSans-VariableItalic.woff2") format("woff2"),
    url("../fonts/GeneralSans-VariableItalic.woff") format("woff"),
    url("../fonts/GeneralSans-VariableItalic.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: "GeneralSans";
  src:
    url("../fonts/GeneralSans-Variable.woff2") format("woff2"),
    url("../fonts/GeneralSans-Variable.woff") format("woff"),
    url("../fonts/GeneralSans-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay";
  src:
    url("../fonts/ClashDisplay-Variable.woff2") format("woff2"),
    url("../fonts/ClashDisplay-Variable.woff") format("woff"),
    url("../fonts/ClashDisplay-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}

:root {
  --primary: #183eeb;
  --primary-2: #173ded;
  --icon: #3539e4;
  --d-strok: #b0b1e4;
  --btn-light: #1b2652;
  --dark: #000000;
  --dark-2: #020102;
  --dark-3: #080029;
  --white: #ffffff;
  --gray: #eeeeee;
  --gray-2: #b8b8b8;
  --gray-3: #e6e6ea;
  --green: #00c41d;
  --red: #e61d0f;
  --grd-1: linear-gradient(291.22deg, #183eeb -8.26%, #000051 116.79%);
  --gray-bg: color-mix(in srgb, var(--dark) 5%, transparent);
  --gray-bg-2: #f6f6f6;

  /* Font============== */
  --title-font: "ClashDisplay", sans-serif;
  --base-font: "GeneralSans", sans-serif;
  --trans: all 0.3s linear;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: var(--white);
  color: var(--dark);
  font-family: var(--base-font);
  line-height: 1.5;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  color: currentColor;
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-family: var(--title-font);
}

h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: var(--base-font);
}

.trim {
  text-box-trim: trim-both;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

hr {
  border-color: var(--strock-3) !important;
  background-color: var(--strock-3) !important;
}

.link {
  color: var(--primary);
}

.max-800 {
  max-width: 800px;
}

.max-600 {
  max-width: 650px;
}

/* Font size========================= */
.fs-10 {
  font-size: 10px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: clamp(16px, 1vw, 18px);
}

.fs-20 {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 120%;
  letter-spacing: 0.02em;
}

.fs-20-btn {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 120%;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.fs-22 {
  font-size: clamp(18px, 2vw, 22px);
}

.fs-24 {
  font-size: clamp(20px, 2vw, 24px);
}

.fs-26 {
  font-size: clamp(22px, 2vw, 26px);
}

.fs-30 {
  font-size: clamp(24px, 3vw, 30px);
}

.fs-32 {
  font-size: clamp(24px, 3.5vw, 32px);
}

.fs-26 {
  font-size: clamp(22px, 2vw, 26px);
}

.fs-26 i {
  font-size: clamp(12px, 0.6vw, 20px);
}

.heading-1 {
  font-weight: 600;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 110%;
  letter-spacing: 0.01em;
  transition: var(--trans);
}

.heading-2 {
  font-weight: 600;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 110%;
  transition: var(--trans);

}

.heading-3 {
  font-weight: 600;
  font-size: clamp(20px, 4vw, 28px);
  line-height: 120%;
   word-break: break-all;
  transition: var(--trans);
	word-break:break-all;
}

.heading-4 {
  font-weight: 600;
  font-size: clamp(20px, 2vw, 22px);
  line-height: 120%;
  transition: var(--trans);
	word-break:break-all;
}

.text-primary {
  color: var(--primary);
}

/*Defult Common ====================== */
.brand-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 40px;
  gap: 10px;
  height: clamp(44px, 3vw, 54px);
  border-radius: 50px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 120%;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: fit-content;
  border: 1px solid transparent;
  transition: var(--trans);
}

.brand-btn-md {
  height: clamp(40px, 3vw, 44px);
  padding: 14px;
  font-size: 16px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.02em;
  width: fit-content;
  border: 1px solid transparent;
  transition: var(--trans);
}

.brand-btn:disabled {
  background-image: none !important;
  background-color: var(--gray) !important;
  pointer-events: none;
  color: var(--l-gray-1) !important;
}

.primary-btn {
  background: var(--primary);
  color: var(--white);
}

.secondary-btn {
  background-color: var(--white);
  color: var(--btn-light);
}

.outline-btn {
  border-color: var(--primary);
  color: var(--primary);
}

.outline-btn-2 {
  border-color: var(--white);
  color: var(--white);
}

.light-text {
  opacity: 0.8;
}

.py-inner {
  padding-top: clamp(50px, 10vw, 100px);
  padding-bottom: clamp(50px, 10vw, 100px);
}

.py-inner-80 {
  padding-top: clamp(50px, 8vw, 80px);
  padding-bottom: clamp(50px, 8vw, 80px);
}

.link-btn {
  color: var(--primary);
  transition: var(--trans);
}

.link-btn:hover {
  letter-spacing: 0.2px;
}


.header {
  position: fixed;
  top: 32px;
  width: 100%;
  transition: var(--trans);
  z-index: 999;
}

.navbar-brand {
  width: 100%;
  max-width: 72px;
  padding: 20px 0px;
  outline: none;
}
.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mega-navbar {
  width: 100%;
  max-width: fit-content;
  background-color: var(--white);
  border-radius: 30px;
  padding: 0px clamp(16px, 2vw, 24px);
  height: 86px;
  transition: var(--trans);
}

.header.scrolled {
  top: 0;
}
.header.scrolled .mega-navbar {
  max-width: 100%;
  border-radius: 0px 0px 30px 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-nav-link {
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  height: 100%;
  padding: 28px 8px;
  text-transform: uppercase;
}
.header-nav-link:hover ,.main-link-hover:hover{
  filter: brightness(0) saturate(100%) invert(16%) sepia(98%) saturate(4665%) hue-rotate(235deg) brightness(92%) contrast(101%);
}

.main-link-hover{
font-size: 16px;
line-height: 100%;
letter-spacing: 0.01em;
text-transform: uppercase;
color: var(--dark);
padding: 12px 16px;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-item {
    position: relative;
}
.sub-link-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    padding: 12px 0;
    border-radius: 0 0 14px 14px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}
.nav-item:hover >.sub-link-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-link-wrapper li {
    position: relative;
}

.main-nav-link {
    display: block;
    padding: 8px 12px;
    font-size: 16px;
    color: var(--dark);
    text-decoration: none;
    text-transform: uppercase;
}
.main-nav-link:hover{
  color: var(--phi-blue);
}

.nested-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%; 
    background:var(--white);
    padding: 12px;
    border-radius:0px 10px 10px 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
}
.dropdown:hover > .nested-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.menu-icon {
  width: 26px;
  height: 20px;
  position: relative;
  display: inline-block;
}

.menu-icon span {
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: var(--dark);
  left: 0;
  transition: all 0.35s ease;
  border-radius: 10px;
}
.menu-icon span:nth-child(1) {
  top: 0;
}
.menu-icon span:nth-child(2) {
  top: 8px;
}
.menu-icon span:nth-child(3) {
  top: 16px;
}
.menu-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--dark);
  padding-bottom: clamp(10px, 0.8vw, 12px);
  margin-bottom: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.01em;
}
.menu-links li.check-item:not(:last-child) {
  margin-bottom: 16px;
}

/* ===================== */

.hero-section {
  padding-top: clamp(120px, 20vw, 236px);
  padding-bottom: clamp(80px, 10vw, 140px);
  background: linear-gradient(270deg, #173ddd -3.39%, #00012c 103.64%);
  color: var(--white);
}

.hero-img {
  width: 100%;
  max-width: 524px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-heading {
  margin-bottom: clamp(30px, 5vw, 56px);
}

/* ===================== */
.stats-banner-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--dark);
}

.stats-outer-box {
  padding: clamp(16px, 6vw, 62px);
  border-left: 1px solid var(--dark);
  border-right: 1px solid var(--dark);
  position: relative;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 110%;
  font-weight: 400;
}

.stat-label {
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 500;
  text-transform: uppercase;
}

.corner-plus {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.0001 8.99966L20.0002 8.99946V10.9995L11.0001 10.9997V19.9996H9.0001V10.9997L4.00543e-05 10.9999L0 8.99986L9.0001 8.99966L9 1.00136e-05L11 0L11.0001 8.99966Z' fill='%23222222'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  z-index: 2;
  pointer-events: none;
}

.plus-tl {
  top: 24px;
  left: 24px;
}

.plus-bl {
  bottom: 24px;
  left: 24px;
}

.plus-tr {
  top: 24px;
  right: 24px;
}

.plus-br {
  bottom: 24px;
  right: 24px;
}

/* ================= */
.about-section {
  background-color: var(--white);
}

.context-img {
  width: 100%;
  height: 100%;
	max-height: 460px;
  max-width: 556px;
  aspect-ratio: 556/460;
  border-radius: clamp(16px, 2vw, 24px);
  overflow: hidden;
}

.context-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ====================== */
.area-section {
  background-color: color-mix(in srgb, var(--dark) 5%, transparent);
}

.service-card {
  position: relative;
  border-radius: clamp(16px, 2vw, 24px);
  padding: 24px 38px 24px 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  background: linear-gradient(90deg, #010028 0%, #183eea 100%);
  background-color: #ffffff;
  background-blend-mode: lighten;
  transition: all 0.6s ease;
  color: var(--dark);
  position: sticky;
  top: 140px;
  box-shadow: 0px 0px 15px #0000000e;
}

.sticky-heading {
  position: sticky;
  top: 140px;
}

.service-card-inner {
  display: flex;
  gap: 1px;
}

.service-card:hover {
  background-color: #010028;
  color: var(--white);
}

.card-header-row {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, currentColor 100%, transparent);
}

.s-card-icon-box {
  color: var(--icon);
  width: 188px;
  height: 188px;
  background-color: color-mix(in srgb, var(--icon) 5%, transparent);
  border: 1.5px solid color-mix(in srgb, currentColor 100%, transparent);
  border-radius: 16px;
  padding: 20px;
  flex-shrink: 0;
  transition: var(--trans);
}

.s-card-icon-box svg {
  width: 98%;
}

.service-card:hover .s-card-icon-box {
  color: var(--d-strok);
  background-color: color-mix(in srgb, var(--primary) 100%, transparent);
}

.service-card .card-content .primary-btn {
  transition: var(--trans);
}

.service-card:hover .card-content .primary-btn {
  background-color: var(--white);
  color: var(--btn-light);
}

/* ================= */
.service-section {
  background-color: var(--white);
}

.service-card-2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  gap: 24px;
  background: color-mix(in srgb, var(--dark) 5%, transparent);
  border-radius: clamp(16px, 2vw, 24px);
}

.service-card-3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px;
  gap: 24px;
  background: var(--white);
  border-radius: clamp(16px, 2vw, 24px);
}

.service-card-2:hover .heading-4 {
  color: var(--primary);
}

.link-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6692 6.27614L4.93151 12.0139L3.98871 11.0711L9.72644 5.33333H4.66925V4H12.0026V11.3333H10.6692V6.27614Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--trans);
}

.service-card-2:hover .link-icon {
  transform: translate(2px, -2px);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6692 6.27614L4.93151 12.0139L3.98871 11.0711L9.72644 5.33333H4.66925V4H12.0026V11.3333H10.6692V6.27614Z' fill='%231e40af'/%3E%3C/svg%3E");
}

.icon-box-2 {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  background-color: var(--primary);
  color: var(--white);
  padding: clamp(14px, 1.4vw, 20px);
}

.icon-box-2 svg {
  width: 90%;
}

.icon-box-2 img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.taking-care-section {
  background-color: var(--gray-bg);
}

.segment-card {
  padding: clamp(16px, 2vw, 24px);
  gap: 24px;
  background: linear-gradient(90deg, #183eea 0%, #010028 100.02%);
  border-radius: clamp(16px, 2vw, 24px);
  color: var(--white);
  transition: var(--trans);
}

.inner-hero-box {
  width: 100%;
  height: 208px;
  background: var(--primary);
  border-radius: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-hero-box img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.segment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(24, 62, 235, 0.3);
  border-color: rgba(255, 255, 255, 0.25);
}

/* =================== */
.how-work-section {
  background:
    url("../images/patn-bg.svg"),
    linear-gradient(182.12deg, #183eeb 5.04%, #000051 97.95%),
    no-repeat center center;
  color: var(--white);
  background-size: cover;
}

.hexa-card-wrapper {
  margin-top: clamp(50px, 7vw, 70px);
}

.hexa-card-icon {
  width: 100%;
  max-width: 284px;
  aspect-ratio: 284/ 326;
  background-image: url(../images/hexa.svg);
  background-position: center center;
  background-size: contain;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding: 16px;
}

.hexa-icon {
  width: 83px;
  height: 83px;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
}

.hexa-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hexa-card-icon .card-number {
  width: 50px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  /* Remove flat color fallback */
  color: var(--white);
  transition: var(--trans);
  font-size: 36px;
  font-family: var(--title-font);
  font-weight: 600;
  color: color-mix(in srgb, var(--white) 30%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg width='55' height='58' viewBox='0 0 55 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.2' d='M19.5312 2.00714C24.1701 -0.669148 29.884 -0.66915 34.5229 2.00714L46.5499 8.94581C51.1932 11.6247 54.0541 16.5779 54.0541 21.9386V35.7967C54.0541 41.1574 51.1933 46.1106 46.5499 48.7895L34.5229 55.7282C29.884 58.4044 24.1701 58.4044 19.5312 55.7282L7.50417 48.7895C2.86081 46.1106 0 41.1574 0 35.7967V21.9386C0 16.5779 2.8608 11.6247 7.50416 8.94581L19.5312 2.00714Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -0%);
}

.hexa-card {
  transition: var(--trans);
}

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

.hw-info {
  background: linear-gradient(291.22deg, #183eeb -8.26%, #000051 116.79%);
  border: 1px solid color-mix(in srgb, var(--white) 50%, transparent);
  border-radius: 24px;
  max-width: 530px;
  margin-top: 56px;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(18px, 2vw, 20px);
  text-transform: uppercase;
  font-weight: 500;
}

/* ================== */
.why-choose-section {
  background-color: var(--gray);
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.why-choose-content img {
  width: 53px;
}

.why-choose-card {
  padding: clamp(16px, 2vw, 24px);
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 16px;
  transition: var(--trans);
}

.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(24, 62, 235, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.wc-icon {
  background-color: var(--primary);
  border-radius: 8px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.wc-icon img {
  width: 70%;
  height: 70%;
}

.news-card {
  padding: clamp(16px, 2vw, 24px);
  background: linear-gradient(90deg, #183eea 0%, #010028 100.02%);
  border-radius: clamp(16px, 2vw, 24px);
  color: var(--white);
}

.news-img {
  width: 100%;
  aspect-ratio: 336/208;
  border-radius: 16px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}

.card-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}

.card-link::after {
  content: "";
  width: 19px;
  height: 12px;
  transition: var(--trans);
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='12' viewBox='0 0 19 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.000128289 6.75021L0 4.91697H14.8242L11.2037 1.29636L12.5 0L18.3337 5.83364L12.5 11.6673L11.2037 10.3709L14.8243 6.75031L0.000128289 6.75021Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.news-card:hover .card-link {
  gap: 16px;
}

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

.nc-copy {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
}

.clamp-1 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
}

.testimonial-section {
  background: linear-gradient(104.51deg, #010028 -0.05%, #183eea 78.82%);
}

.quote-img {
  width: 100%;
  max-width: clamp(60px, 16vw, 160px);
  aspect-ratio: 191/146;
}

.quote-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonialSwiper .swiper-wrapper {
  width: 100%;
}

.testimonial-card {
  color: var(--white);
}

.testimonial-card .author-row {
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--white) 50%, transparent);
}

.testimonial-card .author-avatar {
  width: clamp(50px, 6vw, 60px);
  height: clamp(50px, 6vw, 60px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray);
  transition: var(--trans);
}

.testimonial-card .author-name {
  font-family: var(--title-font);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}

.testimonial-card .author-role {
  font-size: clamp(14px, 1vw, 16px);
}

.testimonial-card .brand-badge {
  width: 50px;
  height: 50px;
}

.testimonial-card .brand-badge img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.nav-trigger-container {
  margin-top: clamp(44px, 7vw, 76px);
}

.swiper-btn {
  width: clamp(44px, 6vw, 65px);
  height: clamp(44px, 6vw, 65px);
  border-radius: 12px;
  border: 1px solid var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 12px;
  cursor: pointer;
  transition: var(--trans);
}

.swiper-btn-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='12' viewBox='0 0 19 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9999 6.75021L19 4.91697H4.1758L7.7963 1.29636L6.5 0L0.6663 5.83364L6.5 11.6673L7.7963 10.3709L4.1757 6.75031L18.9999 6.75021Z' fill='white'/%3E%3C/svg%3E");
}

.swiper-btn-next {
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='12' viewBox='0 0 19 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.000128289 6.75021L0 4.91697H14.8242L11.2037 1.29636L12.5 0L18.3337 5.83364L12.5 11.6673L11.2037 10.3709L14.8243 6.75031L0.000128289 6.75021Z' fill='white'/%3E%3C/svg%3E");
}

.swiper-btn:hover,
.cta-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* ======= */
.certi-img {
  width: 35px;
  height: 93px;
  object-fit: contain;
}

.certi-items {
  width: 100%;
  aspect-ratio: 230/115;
  border-radius: 18px;
  overflow: hidden;
}

.certi-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-wrapper {
  max-width: 706px;
}

.accordion-item {
  border: none;
  border-radius: 16px !important;
  overflow: hidden;
}

.accordion-button {
  position: relative;
  padding: 16px 20px;
  padding-right: 40px;
  background-color: var(--gray-bg);
  color: var(--dark);
  font-family: var(--base-font);
  transition: var(--trans);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
}

.accordion-button::after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.0003 10.9997L22.0004 10.9995V12.9995L13.0003 12.9997L13.0003 21.9996H11.0003L11.0003 12.9997L2.00028 12.9999L2.00024 10.9999L11.0003 10.9997L11.0002 2.00001L13.0002 2L13.0003 10.9997Z" fill="%23183EEB"/></svg>') !important;
  background-size: contain;
  background-repeat: no-repeat;
  transition: var(--trans);
}

.accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(45deg);
  transition: var(--trans);
}

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

.accordion-button:not(.collapsed) {
  background-color: var(--gray-bg);
  color: var(--primary);
}

.accordion-body {
  color: var(--dark);
  background-color: var(--gray-bg);
  border-top: 1px solid color-mix(in srgb, var(--dark) 40%, transparent);
  color: color-mix(in srgb, var(--dark) 80%, transparent);
}

.form-section {
  background-color: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.glowing-item {
  position: absolute;
  width: 725px;
  height: 707px;
  background: var(--primary);
  filter: blur(200px);
  transform: rotate(-180deg);
  pointer-events: none;
  user-select: none;
}

.glowing-item.top {
  left: -310px;
  top: -275px;
}

.glowing-item.bottom {
  right: -310px;
  bottom: -275px;
}

.form-wrapper {
  padding: clamp(16px, 3vw, 34px);
  background-color: var(--white);
  border-radius: clamp(16px, 2vw, 24px);
}

/* ============ */
.contact-form .form-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-form .form-control,
.contact-form textarea {
  border-radius: 16px;
  border: 1px solid var(--gray-2);
  padding: 12px 15px;
  font-family: var(--base-font);
  font-size: 1rem;
  transition: var(--trans);
}

.contact-form .form-control:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 20%, transparent);
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.form-content {
  color: var(--white);
}

.form-content h2 {
  font-size: clamp(40px, 7vw, 70px);
  font-weight: 600;
  line-height: 1.01;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.c-icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary-2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-icon.dark {
  background-color: #08002941;
}

.cta-section {
  background:
    linear-gradient(180deg, rgba(20, 20, 21, 0) 14.34%, #141415 100%),
    url("../images/patn-2.png") no-repeat,
    var(--primary);
  color: var(--white);
  background-position: center bottom;
}

.cta-title {
  max-width: 760px;
  font-size: clamp(40px, 7vw, 70px);
  font-weight: 600;
  line-height: 1.01;
}

.cta-section p {
  max-width: 260px;
}

.cta-btn {
  width: clamp(44px, 6vw, 65px);
  height: clamp(44px, 6vw, 65px);
  border-radius: 12px;
  border: 1px solid var(--white);
  display: flex;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 12px;
  cursor: pointer;
  transition: var(--trans);
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='12' viewBox='0 0 19 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.000128289 6.75021L0 4.91697H14.8242L11.2037 1.29636L12.5 0L18.3337 5.83364L12.5 11.6673L11.2037 10.3709L14.8243 6.75031L0.000128289 6.75021Z' fill='white'/%3E%3C/svg%3E");
}

/* ================ */
.space {
  width: 100%;
  height: clamp(24px, 8vw, 50px);
  background-color: var(--gray);
}

.footer {
  background: linear-gradient(180deg, #141415 0%, #000000 100%);
  padding: 35px 0;
  color: var(--white);
  margin-top: -2px;
}

.footer-logo {
  width: 100%;
  max-width: clamp(70px, 10vw, 106px);
}

.footer-logo img {
  width: 100%;
  filter: brightness(100);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 24px;
}

.social-icons a img {
  width: 98%;
  height: 98%;
  object-fit: contain;
}

.footer-bottom {
  margin-top: clamp(44px, 8vw, 90px);
  border-top: 1px solid #363636;
  padding-top: 14px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer li {
  margin-bottom: 10px;
}

.footer li a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
  opacity: 0.75;
  transition: var(--trans);
}

.footer a:hover {
  opacity: 1;
}

/* ================== */
.sub-page-hero-banner {
  padding-top: clamp(120px, 20vw, 236px);
  background: url(../images/page-banner.png);
  background-size: cover;
  background-position: bottom, center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--white);
}

.sub-page-hero-banner.banner-2 {
  background: url(../images/page-banner-2.png);
  background-size: cover;
  background-position: bottom, center;
  background-repeat: no-repeat;
}

.plus-bg {
  top: clamp(80px, 10vw, 196px);
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 100%;
  max-width: 950px;
  height: 150px;
  filter: invert(1);
  user-select: none;
  pointer-events: none;
}

.sp-banner-content {
  max-width: 870px;
}

.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.page-title::before {
  content: "";
  width: 10px;
  height: 56px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='57' viewBox='0 0 11 57' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 0.371643L0.5 9.37164V48.3716L10.5 56.3716' stroke='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.page-title::after {
  content: "";
  width: 10px;
  height: 56px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='57' viewBox='0 0 11 57' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 0.371643L0.5 9.37164V48.3716L10.5 56.3716' stroke='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  transform: scaleX(-1);
}

.breadcrumb-container {
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 105.5%);
  padding-top: clamp(50px, 10vw, 170px);
  padding-bottom: clamp(30px, 4vw, 44px);
}

.breadcrumb-container.intro {
  padding-top: clamp(50px, 8vw, 80px);
  padding-bottom: clamp(30px, 4vw, 44px);
}

.breadcrumb-link {
  font-size: 14px;
  text-transform: uppercase;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 2px;
  text-box-trim: trim-both;
}

.breadcrumb-link:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.95339 4.65532L5.29807 0L4.23742 1.06066L7.83209 4.65532L4.23742 8.24999L5.29807 9.31064L9.95339 4.65532ZM5.71597 4.65532L1.06066 0L0 1.06066L3.59467 4.65532L0 8.24999L1.06066 9.31064L5.71597 4.65532Z' fill='%23EEEEEE'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.breadcrumb-link:hover {
  opacity: 0.8;
}

.breadcrumb-link.current {
  display: inline-block;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.8;
}

.breadcrumb-container .d-flex {
  flex-wrap: wrap;
}

/* ====================== */
.check-item {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.check-item span {
  opacity: 0.8;
}

.check-item:not(:last-child) {
  margin-bottom: 10px;
}

.check-item::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  margin-right: 8px;

  background:
    url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00002 9.10259L11.5155 3.58716L12.364 4.43568L6.00002 10.7996L2.18164 6.98129L3.03017 6.13277L6.00002 9.10259Z' fill='white'/%3E%3C/svg%3E"),
    var(--primary);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 70%;
  flex-shrink: 0;
}

.experties-section {
  background-color: var(--gray-bg);
}

.expert-img {
  height: 100%;
  min-height: 180px;
  width: 100%;
  overflow: hidden;
  border-radius: clamp(16px, 2vw, 24px);
}

.expert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-card {
  background: linear-gradient(104.51deg, #010028 -0.05%, #183eea 78.82%);
  border-radius: clamp(16px, 2vw, 24px);
  color: var(--white);
  padding: 24px;
  height: 100%;
}

.mission-section {
  color: var(--white);
  background-image: url(../images/page-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.filled-card {
  padding: clamp(16px, 2vw, 24px);
  background: var(--primary);
  border-radius: 16px;
  height: 100%;
}

.card-hover {
  transition: var(--trans);
}

.icon-80 {
  width: 85px;
  height: 85px;
}

.icon-40 {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-80 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.timeline {
  position: relative;
  margin: 50px 0;
  padding: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  background: color-mix(in srgb, var(--dark) 20%, transparent);
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0px 7px;
  overflow: hidden;
}

.history-img {
  width: 136px;
  height: 136px;
  aspect-ratio: 1/1;
  border-radius: 28px;
  filter: saturate(0);
  transition: var(--trans);
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item .t-card {
  background-color: var(--gray);
  color: var(--dark);
  transition: var(--trans);
  padding: clamp(16px, 1.8vw, 20px);
  display: flex;
  align-items: center;
  gap: 18px;
}

.timeline-item.left .t-card {
  margin-left: auto;
  border-radius: 24px 0px 0px 24px;
	 flex-direction: row-reverse;
}

.timeline-item.right .t-card {
  margin-left: auto;
  border-radius: 0px 24px 24px 0px;
}

.timeline-item:hover .t-card {
  background-color: var(--primary);
  color: var(--white);
}

.timeline-item:hover .t-card .history-img {
  filter: saturate(1);
}

.our-team-section {
  background-color: var(--gray);
}

.sol-card-wrapper {
  width: 100%;
  max-width: 174px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.sol-card {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  border: 1px solid var(--icon);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  width: 100%;
  max-width: 174px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-wrapper {
  padding: clamp(12px, 1.4vw, 24px);
  border-radius: clamp(14px, 1.4vw, 24px);
  border: 1px solid var(--dark);
}

.map-container {
  width: 100%;
  height: 483px;
  border-radius: 12px;
  overflow: hidden;
}

.location-buttons {
  background-color: var(--primary);
  border-radius: 16px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(12px, 1vw, 16px) clamp(16px, 2vw, 32px);
  margin-bottom: clamp(16px, 1.8vw, 24px);
  overflow: hidden;
  flex-wrap: wrap;
  gap: 8px;
}

.location-name {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}

.map-pin {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 20.8995L16.9497 15.9497C19.6834 13.2161 19.6834 8.78392 16.9497 6.05025C14.2161 3.31658 9.78392 3.31658 7.05025 6.05025C4.31658 8.78392 4.31658 13.2161 7.05025 15.9497L12 20.8995ZM12 23.7279L5.63604 17.364C2.12132 13.8492 2.12132 8.15076 5.63604 4.63604C9.15076 1.12132 14.8492 1.12132 18.364 4.63604C21.8787 8.15076 21.8787 13.8492 18.364 17.364L12 23.7279ZM12 13C13.1046 13 14 12.1046 14 11C14 9.89543 13.1046 9 12 9C10.8954 9 10 9.89543 10 11C10 12.1046 10.8954 13 12 13ZM12 15C9.79086 15 8 13.2091 8 11C8 8.79086 9.79086 7 12 7C14.2091 7 16 8.79086 16 11C16 13.2091 14.2091 15 12 15Z' fill='white'/></svg>");
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
}

.information-section {
  background-color: var(--white);
}

.information-wrapper {
  width: 100%;
  max-width: 952px;
}

.read-more-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.read-more-text.expanded {
  display: block;
  -webkit-line-clamp: none;
}

.bg-gray {
  background-color: var(--gray-bg);
}

.short-link-wrapper {
  background-color: var(--gray-bg);
  padding: clamp(20px, 3vw, 32px);
  border-radius: 16px;
}

.short-link-wrapper a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 600;
  color: var(--btn-light);
}

.short-link-wrapper a:not(:last-child) {
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--dark) 10%, transparent);
  margin-bottom: 14px;
}

.short-link-wrapper a::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231B2652' d='M10.6692 6.27614L4.93151 12.0139L3.98871 11.0711L9.72644 5.33333H4.66925V4H12.0026V11.3333H10.6692V6.27614Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--trans);
}

.short-link-wrapper a:hover {
  color: var(--primary);
}

.short-link-wrapper a:hover::after {
  transform: translate(2px, -2px);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6692 6.27614L4.93151 12.0139L3.98871 11.0711L9.72644 5.33333H4.66925V4H12.0026V11.3333H10.6692V6.27614Z' fill='%231e40af'/%3E%3C/svg%3E");
}

.contact-info-wrapper {
  width: 100%;
  padding: clamp(24px, 2vw, 30px);
  border-radius: clamp(16px, 2vw, 24px);
  background: linear-gradient(90deg, #010028 0%, #183eea 100%);
  color: var(--white);
}

.contact-items {
  margin: clamp(20px, 3vw, 30px) 0px;
}

.contact-item {
  background-color: var(--primary-2);
  padding: clamp(14px, 2vw, 20px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.c-social-links {
  padding-top: 30px;
  border-top: 1px solid var(--d-strok);
}

.cs-icon {
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.address-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(18px, 2vw, 24px);
  background: var(--white);
  border-radius: clamp(16px, 2vw, 24px);
}

.map-section {
  overflow: hidden;
}

.large-map-container {
  width: 100%;
  height: clamp(400px, 50vw, 770px);
}

.sidebar {
  padding: 24px 16px;
  background: var(--gray-bg);
  border-radius: clamp(16px, 2vw, 24px);
}

.sticky-card {
  position: sticky;
  top: 140px;
}

.sidebar .category-list a {
  list-style: none;
  padding: 8px 14px;
  background-color: color-mix(in srgb, var(--white) 30%, transparent);
  border: 1px solid color-mix(in srgb, var(--dark) 20%, transparent);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-radius: 16px;
  margin-bottom: 6px;
}

.pagination {
  gap: 10px;
}

.pagination .page-item .page-link {
  border-radius: 16px;
  background-color: var(--gray-bg);
  color: var(--dark);
  font-weight: 500;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--trans);
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link.current {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination .page-item .page-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

.pagination .page-item .page-link.link-rounded-0 {
  border-radius: 0;
}

.search-control {
  border-radius: 16px;
  border: 1px solid var(--dark);
  padding: 10px 14px;
  padding-right: 36px;
  width: 100%;
}

.search-icon {
  position: relative;
}

.search-icon::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M9.07821 15.6812C12.7247 15.6812 15.6808 12.7251 15.6808 9.07857C15.6808 5.43205 12.7247 2.47595 9.07821 2.47595C5.43168 2.47595 2.47559 5.43205 2.47559 9.07857C2.47559 12.7251 5.43168 15.6812 9.07821 15.6812Z" stroke="black" stroke-width="1.65066" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.3324 17.3319L13.7422 13.7417" stroke="black" stroke-width="1.65066" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.page-link:focus {
  box-shadow: none;
}

.article-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
  row-gap: 10px;
  column-gap: clamp(10px, 1vw, 24px);
  background: var(--gray);
  margin-top: 16px;
  margin-bottom: clamp(16px, 2vw, 30px);
  width: fit-content;
  border: 4px;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 10px);
  font-size: 16px;
  font-weight: 500;
}

.article-meta span img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.article-image {
  width: 100%;
  margin-bottom: clamp(24px, 2vw, 30px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 790/460;
}

.article-content p {
  line-height: 1.5;
  color: color-mix(in srgb, var(--dark) 80%, transparent);
  margin-bottom: 16px;
}

.article-content h4,
.article-content h5 {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  margin-bottom: clamp(16px, 1vw, 24px);
}

.quote {
  margin: clamp(16px, 1vw, 24px) 0px;
  background: var(--grd-1);
  color: var(--white);
  padding: clamp(16px, 1vw, 24px);
  border-radius: 8px;
}

.internal-links {
  margin-bottom: clamp(18px, 2vw, 24px);
}

.internal-links li {
  list-style: inside;
  color: var(--primary);
}

.internal-links a {
  color: var(--primary);
  text-decoration: underline;
  margin-bottom: 5px;
}

.recent-posts {
  padding: 24px 16px;
  background: var(--gray-bg);
  border-radius: clamp(16px, 2vw, 24px);
  position: sticky;
  top: 120px;
}

.recent-post {
  display: flex;
  align-items: center;
  transition: var(--trans);
}

.recent-post-item:not(:last-child) {
  margin-bottom: 16px;
}

.recent-post p {
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 500;
}

.recent-post:hover p {
  color: var(--primary);
}

.recent-post .recent-post-img {
  width: clamp(50px, 6vw, 80px);
  height: clamp(50px, 6vw, 80px);
  border-radius: 6px;
  margin-right: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post .recent-post-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-location-section {
  background-color: var(--gray-bg-2);
}

.location-tab {
  padding: clamp(8px, 2vw, 24px);
  background: linear-gradient(90deg, #183eea 0%, #010028 100.02%);
  border-radius: clamp(16px, 2vw, 24px);
}

.nav-link {
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 500;
}

.location-tab-nav .nav-item {
  margin-bottom: 16px;
}

.location-tab-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 21px;
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 120%;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.location-tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
}

.location-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.location-info-content .tab-pane {
  padding: clamp(16px, 1.8vw, 24px);
  background-color: var(--primary);
  border-radius: 16px;
  height: 100%;
}

.map-img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 200/260;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tab-content {
  color: var(--white);
}

.arrow-icon {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M12.1716%206.77822L6.8076%201.41421L8.2218%200L16%207.77822L8.2218%2015.5563L6.8076%2014.1421L12.1716%208.77822H0V6.77822H12.1716Z%22%20fill%3D%22white%22/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 70%;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M12.1716%206.77822L6.8076%201.41421L8.2218%200L16%207.77822L8.2218%2015.5563L6.8076%2014.1421L12.1716%208.77822H0V6.77822H12.1716Z%22%20fill%3D%22white%22/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 70%;
  mask-position: center;
  transition: var(--trans);
}

.arrow-icon-link {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M12.526 4.26776L1.76776 15.026L0 13.2582L10.7582 2.5H1.27602V0H15.026V13.75H12.526V4.26776Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 70%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M12.526 4.26776L1.76776 15.026L0 13.2582L10.7582 2.5H1.27602V0H15.026V13.75H12.526V4.26776Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 70%;
  transition: var(--trans);
}

.i-16 {
  width: 16px;
  height: 16px;
}

.feature-wrapper {
  width: 100%;
  max-width: 815px;
}

.feature-heghlight-wrapper {
  width: 100%;
  max-width: 754px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: clamp(20px, 5vw, 70px);
  justify-items: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.fh-logo {
  width: 10%;
  max-width: 100px;
  aspect-ratio: 1/1;
  background-color: #f2f2f2;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fh-logo img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.fh-item {
  width: 100%;
  max-width: 342px;
  aspect-ratio: 342/306;
  background-color: var(--primary);
  border-radius: clamp(16px, 2vw, 24px);
  padding: clamp(10px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.fh-item .fh-item-img {
  width: 150px;
  height: 150px;
  aspect-ratio: 1/1;
  margin-bottom: 16px;
}

.fh-item .fh-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.workshop-time {
  width: 100%;
  max-width: 434px;
  border-radius: 24px;
  padding: clamp(10px, 0.8vw, 15px);
  background-color: var(--primary);
  margin: 0 auto;
}

.workshop-time-date {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-time {
  background-color: var(--dark-3);
  border-radius: 16px;
  padding: 10px 10px;
  width: 134px;
  position: relative;
}

.current-time .day-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.current-time .time {
  font-size: 30px;
  line-height: 1;
}

.ampm {
  font-size: 14px;
}

.current-status {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  gap: 4px;
  background: color-mix(in srgb, currentColor 20%, transparent);
  border-radius: 6px;
  margin-top: 20px;
  font-size: 12px;
  text-transform: uppercase;
}

.current-status.open {
  color: var(--green);
}

.current-status .dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: currentColor;
}

.opening-info {
  background: color-mix(in srgb, var(--dark-3) 20%, transparent);
  padding: 12px;
  gap: 3px;
  border-radius: 16px;
  flex-grow: 1;
  color: var(--white);
}

.highlight-text {
  padding: 14px;
  background: linear-gradient(104.51deg, #010028 -0.05%, #183eea 78.82%);
  border-radius: 16px;
  color: var(--white);
}

.ht-content-inner {
  padding: clamp(14px, 1.5vw, 18px);
  border-radius: 12px;
  border: 1px solid var(--white);
}

.active-page-wrapper {
  background: linear-gradient(90deg, #010028 0%, #183eea 100%);
  border-radius: clamp(16px, 2vw, 24px);
  padding: clamp(16px, 2vw, 24px);
}

.active-page-link {
  border-radius: 16px;
  background-color: var(--white);
  color: var(--btn-light);
  overflow: hidden;
}

.apl-item {
  padding: clamp(16px, 2vw, 24px);
  display: block;
  transition: var(--trans);
}

.apl-item:hover .arrow-icon-link {
  transform: translate(2px, -2px);
}

.apl-item:not(:last-child) {
  border-bottom: 1px solid var(--d-strok);
}

.apl-item:hover {
  color: var(--white);
  background: var(--primary);
}

.work-shop-img {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 564/424;
}

.work-shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laptop-image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 400/448;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.laptop-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.laptop-image .heading-4 {
  width: 100%;
  max-width: 252px;
  position: absolute;
  left: 50%;
  top: 48px;
  transform: translateX(-50%);
}

.point-links {
  max-width: 520px;
  min-width: 520px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
}

.point-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sm-features {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  padding: 16px;
  color: var(--white);
  margin-bottom: clamp(8px, 2vw, 24px);
}

.sm-feature-wrapper.l {
  padding-right: 36px;
}

.sm-feature-wrapper.r {
  padding-left: 36px;
}

.sm-features.l {
  background: linear-gradient(90deg, #010028 0%, #183eea 100%);
  padding-right: 28px;
}

.sm-features.r {
  background: linear-gradient(90deg, #183eea 0%, #010028 100%);
  flex-direction: row-reverse;
  padding-left: 28px;
}

.sm-feature-icon {
  padding: 8px 16px;
  border-radius: 16px;
  background-color: var(--primary);
  width: 100%;
  max-width: 108px;
}

.sm-feature-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.rs-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: clamp(16px, 1.8vw, 20px);
  gap: 16px;
  width: 100%;
  border-radius: 16px;
  background-color: var(--gray-bg);
  color: var(--btn-light);
}

.rs-item .sn {
  width: clamp(56px, 7vw, 80px);
  height: clamp(56px, 7vw, 80px);
  background-color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  color: var(--white);
  font-family: var(--title-font);
  flex-shrink: 0;
}

.rs-item p {
  max-width: 185px;
}

.rs-item.active {
  background-color: var(--primary);
  color: var(--white);
}

.rs-item.active .sn {
  background-color: var(--white);
  color: var(--primary);
}

.more-service-links-wrapper {
  max-width: 586px;
}

.more-service-section {
  background-color: var(--gray-bg-2);
}

.more-section-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--gray-3);
  border-radius: 14px;
  margin-bottom: clamp(10px, 0.8vw, 14px);
  color: var(--btn-light);
  transition: var(--trans);
}

.more-section-link:hover {
  background: var(--gray);
}

.more-section-link:hover .arrow-icon {
  transform: translateX(4px);
}

.more-section-link.active {
  background: var(--primary);
  color: var(--white);
}

.info-strip {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  gap: 16px;
  background: var(--primary);
  border-radius: 16px;
  color: var(--white);
}

.info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(291.22deg, #183eeb -8.26%, #000051 116.79%);
  border: 0.553846px solid rgba(255, 255, 255, 0.5);
}

.page-quick-link-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--d-strok);
  gap: 12px;
}

.page-quick-link {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
  border-radius: 4px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--primary);
  transition: var(--trans);
}

.service-card:hover .page-quick-link {
  color: var(--white);
}

.page-quick-link:hover .arrow-icon-link {
  transform: translate(2px, -2px);
}

.service-card-4 {
  padding: clamp(16px, 2vw, 24px);
  border-radius: clamp(16px, 2vw, 24px);
  background: linear-gradient(90deg, #183EEA 0%, #010028 100.02%);
  background-color: var(--gray-3);
  background-blend-mode: lighten;
  transition: all 0.6s ease;
  color: var(--dark);
  height: 100%;
}

.service-card-4.card-5 {
  display: flex;
  ;
  gap: clamp(16px, 1.8vw, 24px);
  align-items: center;
  height: fit-content;
}

.service-card-4:hover {
  background-color: #010028;
  color: var(--white);
}

.service-card-4:hover .service-img img {
  scale: 1.1;
}

.service-card-4:hover .brand-btn-md {
  background-color: var(--white);
  color: var(--btn-light);
}

.service-img {
  width: 100%;
  aspect-ratio: 336/208;
  background-color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-img.img-2 {
  width: 100%;
  aspect-ratio: 186/178;
  background-color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}

.icon-44 {
  width: 54px;
  height: 54px;
}

/* ======================= */
body {
  top: 0 !important;
}

.lang-change {
  width: 54px;
  height: 54px;
  background-color: var(--gray);
  cursor: pointer;
}

.language-offcanvas {
  height: 100vh !important;
  background: var(--white);
  color: var(--dark-3);
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.language-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--base-font);
  text-decoration: none;
  border-radius: 14px;
  transition: .3s;
  padding: 20px;
}

.language-grid a:hover {
  background: var(--primary);
  color: var(--white);
}

.skiptranslate {
  display: none;
}


:root {
  --phi-blue: #173DED;
  --phi-black: #000000;
  --phi-white: #FFFFFF;
  --phi-dark-1: #000029;
  --phi-dark-2: #000051;
  --phi-gradient: linear-gradient(-26deg, #000029, #000051);
  --gray-100: #F1EFE8;
  --gray-300: #D3D1C7;
  --gray-500: #888780;
  --gray-700: #444441;
}

.wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.panel {
  background: var(--white);
  border-radius: 18px;
  padding: clamp(16px, 2vw, 30px);
  box-shadow: 0 4px 24px rgba(0, 0, 40, .06);

}

.clac-header {
  background: var(--phi-gradient);
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.slider-row {
  margin-bottom: 14px;
}

.slider-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.slider-head label {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-2);
}

.slider-val {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-3);
}

.slider-val b {
  color: var(--primarye);
}

.ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-700);
  margin-top: 4px;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-300);
  outline: none;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--phi-blue);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 40, .3);
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--phi-blue);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 40, .3);
  cursor: pointer;
}

.summary {
  background: var(--gray-100);
  border-radius: 14px;
  padding: 24px;
  margin-top: 8px;
}

.summary-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.line {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 15px;
}

.line .lbl {
  color: var(--gray-700);
}

.line .lbl small {
  color: var(--gray-500);
}

.line .amt {
  font-weight: 500;
  color: var(--phi-dark-1);
}

.total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1.5px solid var(--gray-300);
  margin-top: 14px;
  padding-top: 18px;
}

.total .lbl {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-2);
}

.total .amt {
  font-size: 30px;
  font-weight: 700;
  color: var(--phi-blue);
  letter-spacing: -.02em;
}

.yearly {
  text-align: right;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

@media(max-width:560px) {


  .panel {
    padding: 11px;
  }

  .total .amt {
    font-size: 20px;
  }

  .total .lbl {
    font-size: 14px;
  }
}

.read-more-text p,
.services-desc p ,
.service-description p , .service-description h4{
  margin-bottom: 16px;
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 0 0 20px;
    padding-left: 20px;
}

.page-content ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.page-content ol li {
    list-style: decimal;
    margin-bottom: 10px;
}

.page-content li:last-child,
.page-content p:last-child {
    margin-bottom: 0;
}