/* main css */
:root {
	--white: #fff;
	--black: #000;
	--grey: #eee;
	--white-rgb: 255, 255, 255;
	--black-rgb: 21, 21, 21;
	--transition: all 0.3s ease-in-out;
	--shadow: 0px 4px 25px 0px #0000000f;

    --violet-50: #eef8ee;
    --violet-100: #e3f3e4;
    --violet-200: #cdeacf;
    --violet-400: #84cc8a;
    --violet-500: #5dba63;
    --violet-600: #44a64d;
    --violet-700: #2f8b3c;
    --sky-100: #e6f5ee;
    --sky-400: #6fc7a6;
    --sky-500: #2fa987;
    --rose-100: #f8f3e6;
    --rose-400: #cba35e;
    --amber-100: #fff6e6;
    --amber-400: #e8b85a;
    --ink: #18301f;
    --ink-soft: #2f4a37;
    --muted: #5f7466;
    --line: #e6efe6;
    --bg: #f5faf5;
    --bg-2: #ffffff;
    --card: #ffffff;
	--cb: #93c5fd;
    --cbg: #dbeafe;
	--cb2: #86efac;
    --cbg2: #dcfce7;
	--cb3: #bef264;
    --cbg3: #ecfccb;
	--cb4: #fdba74;
    --cbg4: #ffedd5;
    --grad: linear-gradient(135deg, #5bb85f 0%, #3fa14d 50%, #2f8b4a 100%);
    --grad-soft: linear-gradient(135deg, #eef8ee 0%, #e6f5ee 100%);
    --grad-warm: linear-gradient(135deg, #f8f3e6 0%, #eef8ee 100%);
    --shadow-sm: 0 2px 10px rgba(30, 60, 35, .05);
    --shadow: 0 12px 34px rgba(30, 60, 35, .08);
    --shadow-lg: 0 22px 50px rgba(30, 60, 35, .11);
    --ring: 0 0 0 4px rgba(91, 184, 95, .18);
    --radius: 18px;
    --radius-lg: 26px;
    --font-body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --font-head: "Montserrat", "Poppins", system-ui, sans-serif;
}

html, body {
	overflow-x: hidden;
}
body {
	font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -.02em;
}

.bg-overlay {
	position: relative;
}
.bg-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0.8
}
.bg-overlay.theme-overlay:before {
	background-color: var(--color5);
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}

.text-justify { text-align: justify; }

.bg-1 { background-color: var(--color1); }
.bg-2 { background-color: var(--color2); }
.bg-3 { background-color: var(--color3); }
.bg-4 { background-color: var(--color4); }
.bg-5 { background-color: var(--color5); }
.bg-grey { background-color: var(--grey); }

/* header */
header { 
	position: relative;
}
.social {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.social li a {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 8px;
  background-color: rgba(var(--white-rgb), .1);
	color: var(--white);
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.social li a:hover {
	background-color: var(--violet-600);
  transform: translateY(-3px);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(var(--white-rgb), .6);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(var(--white-rgb), .8);
    box-shadow: 0 0 15px rgba(var(--black-rgb), .2);
    animation: slide-down 0.7s;
}
@keyframes slide-down {
	0% {
	  transform: translateY(-100%);
	}
	100% {
	  transform: translateY(0);
	}
}
.navbar-brand {
	font-size: 36px;
	font-weight: bold;
	color: var(--white);
	padding: 0;
}
.navbar-brand img,
.navbar-right img { 
	height: 72px; 
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-item .btn-group {
	position: initial;
  align-items: center;
  color: var(--ink);
}
.nav-item .btn-group .dropdown-toggle {
  color: var(--ink);
}
.nav-item .nav-link {
	position: relative;
  font-weight: 600;
  font-size: .86rem;
  color: var(--ink);
  padding: 38px 10px;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 33px;
  left: 0;
  right: 0;
  display: block;
  width: 0;
  height: 3.5px;
  border-radius: 4px;
  margin: 0 auto;
  background: var(--grad);
  transition: var(--transition);
}
.nav-item:hover .nav-link {
	color: var(--violet-700);
  transform: translateY(-2px);
}
.nav-item:hover .nav-link::before {
  width: 100%;
}
.navbar-toggler { border:none;}
.navbar-toggler:focus { box-shadow:none;}
/* .navbar-toggler-icon { filter: brightness(0) invert(1);} */
.nav-item.dropdown li:not(:last-child) {
	border-bottom: 1px solid #e3e3e3;
}
.dropdown-item {
	padding: 10px 20px;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color1);
	background-color: var(--white);
	padding-left: 25px;
}
.dropdown-toggle::after {
	content: '\f0d7';
	font-family:"FontAwesome";
	border: none;
	vertical-align: bottom;
  transform: scale(0.5);
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 99;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 300px;
	border: 1px solid #eaecf0;
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--white);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.nav-item.dropdown:hover .dropdown-menu li a {
	position: relative;
}
.full-width {
  position: initial;
}
.nav-item.dropdown.full-width .dropdown-menu {
  width: 80%;
  right: 0;
  margin: 0 auto;
  border-top: 3px solid var(--violet-700);
  border-radius: 0 0 15px 15px;
  padding: 30px;
}
.full-width .desc {
  padding-right: 30px;
  border-right: 1px solid var(--violet-100);
}
.full-width .desc span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--violet-600);
}
.full-width .desc h4 {
  font-weight: normal;
  margin: 10px 0 15px;
}
.full-width .desc em {
  color: var(--violet-700);
}
.full-width .desc a {
  display: inline-block;
  background-color: var(--violet-100);
  color: var(--black);
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.full-width .desc a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin: 0 auto;
  background: var(--grad);
  border-radius: 3px;
  transition: var(--transition);
}
.full-width .desc a:hover {
  color: var(--violet-700);
  transform: translateY(-1px);
}
.full-width .desc a:hover::after {
  width: 100%;
}
.full-width .links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap:30px;
  row-gap:20px;
}
.full-width .links a {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--black);
  transition: var(--transition);
  padding-bottom: 3px;
}
.full-width .links a span {
  opacity: 0.5;
  transform: translateX(-3px);
  transition: var(--transition);
}
.full-width .links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 3px;
  margin: 0 auto;
  background: var(--grad);
  border-radius: 3px;
  transition: var(--transition);
}
.full-width .links a:hover::after {
  width: 100%;
}
.full-width .links a:hover {
  color: var(--violet-700);
  transform: translateY(-2px);
}
.full-width .links a:hover span {
  opacity: 1;
  transform: translateX(0);
}
/*********************/
/* slider */
.owl-slide .item {
	position: relative;
    overflow: hidden;
    background-color: #0a1f0a;
}
.owl-slide .item::before {
	position: absolute;
	inset: 0;
	content: '';
	background: #0a1f0a73;
}
.owl-slide .item img {
	width: 100%;
    height: clamp(500px, 72vh, 640px);
	object-fit: cover;
	transition: all 7000ms linear;
	-webkit-transition: all 7000ms linear;
	-moz-transition: all 7000ms linear;
	-ms-transition: all 7000ms linear;
	-o-transition: all 7000ms linear;
}
.owl-slide .item .desc {
	color: var(--white);
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
    /* max-width: 550px; */
}
.owl-slide .item .desc .subheading {
	font-family: Fraunces, Georgia, serif;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: #ffffff26;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 7px 15px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.owl-slide .item .desc h1 {
	color: var(--white);
	font-weight: 700;
	margin-bottom: 15px;
}
.owl-slide .item .desc h1 span {
	color: var(--violet-400);
	font-family: Fraunces, Georgia, serif;
    font-style: italic;
	font-weight: 600;
}
.owl-slide .item .desc p {
    color: #ffffffd9;
    font-size: 1rem;
}
.owl-slide .owl-item.active .item img {
	transform: scale(1.15);
}
.owl-slide .owl-item.active h1,
.owl-slide .owl-item.active p,
.owl-slide .owl-item.active .subheading,
.owl-slide .owl-item.active .btns {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInUp;
	animation-delay: 0.6s;
}
.owl-slide .owl-item.active .subheading { animation-delay: 0.4s;}
.owl-slide .owl-item.active p { animation-delay: 0.8s;}
.owl-slide .owl-item.active .btns { animation-delay: 1s;}
/*
.owl-slide .owl-nav {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.owl-slide .owl-nav > div {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	border: 2px solid var(--white);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0.6;
	transition: var(--transition);
}
.owl-slide .owl-nav > div:hover{ 
	background-color: var(--color1);
	border-color: var(--color1);
	opacity: 1;
}*/
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
}
/*********************/
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
}
.owl-carousel .owl-dots > div {
	width: 11px;
    height: 11px;
    border-radius: 999px;
    border: none;
    background: var(--violet-700);
    cursor: pointer;
    transition: .2s;
    padding: 0;
	opacity: 0.4;
}
.owl-carousel .owl-dots > div.active {
	width: 30px;
	opacity: 1;
}
/*********************/
.btn1 {
	position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .96rem;
    padding: 13px 24px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
	background: var(--grad);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    transition:transform 0.3s ease, transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn1:hover {
	transform: translateY(-3px);
}
.btn1.type2 {
	background: var(--white);
	color: var(--ink);
  border: 1px solid var(--violet-100);
}
.btn1.type2:hover {
	color: var(--violet-700);
	border-color: var(--violet-700);
}
.btn1.type3 {
	background: transparent;
	color: var(--violet-700);
	outline:2px solid var(--violet-600);
	outline-offset: -2px;
    padding: 10px 20px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
}
.btn1.type3:hover {
	background: var(--grad);
	color: var(--white);
	border-color: transparent;
}
/*********************/
.heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.heading span,
.heading3 > span {
	display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--violet-50);
    border: 1px solid var(--violet-200);
    padding: 7px 15px;
    border-radius: 999px;

	color: var(--mint);
    font-size: 12px;
    font-weight: 700;
	font-family: Fraunces, Georgia, serif;
    font-style: italic;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.heading h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 2.8vw, 42px);
    margin-bottom: 16px;
    line-height: 1.25;
    color: var(--violet-500);
}
.heading2 span {
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	color: var(--violet-600);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.heading2 h2,
.heading3 h2 {
	font-size: clamp(26px, 2.8vw, 42px);
}
.heading2 p,
.heading3 p {
	color: var(--muted);
}
.heading3 span {
	font-family: Fraunces, Georgia, serif;
  font-style: italic;
	color: var(--violet-700);
}
/*********************/
.welcome figure {
	position: relative;
	margin: 0;
}
.welcome figure img {
    width: 100%;
    max-width: 380px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
	margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    border-radius: 12px;
    transition: transform 0.4s, box-shadow 0.4s;
}
.welcome figure:hover img {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(var(--black-rgb), .2);
}
.welcome figure a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 380px;
    max-height: 400px;
    background: linear-gradient(to top, rgba(22, 46, 32, .7) 0%, transparent 50%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
}
.welcome figure:hover a {
    opacity: 1;
}
/*********************/
.services .d-grid {
	grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--violet-50);
    border: 1px solid var(--violet-50);
}
.services .item {
    flex: 1;
    height: 100%;
    background: var(--white);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background .2s;
	font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}
.services .item .icon {
	width: 38px;
    height: 38px;
    background: var(--violet-600);
    color:var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}
.services .item .head {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--violet-50);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.services .item .head span {
	font-size: 13px;
	opacity: 0.3;
	transition: var(--transition);
}
.services .item:hover {
    background: var(--bg);
}
.services .item:hover .head span {
	opacity: 1;
	transform: translateX(3px);
}
/*********************/
.labs img {
	border-radius: 15px;
}
.labs .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    background: rgb(240, 253, 244);
    border-radius: 100px;
    border: 1px solid rgb(187, 247, 208);
}
/*********************/
.certificates .item {
    display: flex;
	height: 100%;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--violet-100);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 30px #0000000a;
    align-items: center;

	font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.5;
}
.certificates .item figure {
    flex-shrink: 0;
    width: 130px;
    padding: 10px;
    border: 1px solid var(--violet-50);
    border-radius: 8px;
    background: rgb(250, 250, 250);
	margin: 0;
}
.certificates .item.type2 figure {
    width: 250px;
}
.certificates .item .subhead {
	display: inline-flex;
    gap: 6px;
    align-items: center;
    background: var(--violet-50);
    color: var(--violet-700);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}
.certificates .item h3 {
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}
.certificates .item .link {
    color: var(--violet-700);
    font-weight: 700;
}
/*********************/
.clients .item {
	background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--violet-50);
    box-shadow: rgba(0, 0, 0, 0.03) 0px 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
	width: 160px;
    height: 120px;
}
.clients .item.type2 {
    width:240px;
}
.clients .item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*********************/
.credential h2 {
	color: var(--violet-700);
}
.layer {
    position: relative;
    border: 1px solid;
    border-left: none;
    margin-left: 80px;
    padding: 28px 28px 28px 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 120px;
}
.layer::before {
	content: '';
    position: absolute;
    left: -80px;
    top: -.5px;
    bottom: -1px;
    width: 80px;
    border: 1px solid;
    border-right: none;
    border-radius: 1000px 0 0 1000px;
    z-index: 1;
}
.layer1 { border-color: var(--cb);}
.layer1::before { background: var(--cbg); border-color: var(--cb);}
.layer2 { border-color: var(--cb2);}
.layer2::before { background: var(--cbg2); border-color: var(--cb2);}
.layer3 { border-color: var(--cb3);}
.layer3::before { background: var(--cbg3); border-color: var(--cb3);}
.layer4 { border-color: var(--cb4);}
.layer4::before { background: var(--cbg4); border-color: var(--cb4);}
.layer b { padding-left: 20px;}
/*********************/
/* footer */
footer {
	background: var(--ink);
  color: var(--violet-200);
  font-size: .9rem;
}
footer h4 {
	position: relative;
	color: var(--white);
  font-size: 16px;
  margin-bottom: 15px;
}
footer .logos {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: var(--shadow-sm);

    font-size: .8rem;
    line-height: 1.45;
    font-weight: 600;
    color: var(--ink);
}
footer .logos img {
  height: 52px;
}
footer .links li {
  padding: 5px 0;
}
footer li a {
	color: inherit;
}
footer li a:hover {
	color: var(--white);
}
.footer-contact {
	display: flex;
  gap: 10px;
  flex-direction: column;
}
.footer-contact li,
.footer-contact li a {
	position: relative;
	display: flex;
  gap: 10px;
	color: inherit;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer-contact li i {
	flex-shrink: 0;
	font-size: 16px;
  line-height: 1.6em;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--violet-600);
}
.footer-bottom {
  border-top: 1px solid rgba(var(--white-rgb), .1);
}

.call-fixed {
  position: fixed;
  box-shadow: 0px 0px 10px #e0e0e0;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  bottom: 25px;
  left: 25px;
  z-index: 10;
}
.call-fixed a {
  display: block;
  margin: 10px 0;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  left: 20px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background: var(--grad);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:before {
  /* content: ""; */
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--color1);
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--black);
  color: var(--white);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--black);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
.scrollToTop {
  position: fixed;
  /* right: 20px; */
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:auto;
    height:initial;
    padding:5px;
    color:#111;
    background-position: right 10px center;
    border-radius:3px;
    border:1px solid #ddd;
}
.goog-te-gadget { font-size: 0 !important;}
#google_translate_element span { display:none;}
/**************/
.whatsappfix {
  position: fixed;
  left: 50px;
  bottom: 90px;
  z-index: 1
}
.whatsappfix .video-btn > span {
  background-color: rgba(37, 211, 102,1);
}

.video-btn {
  text-align: initial;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  font-size: 28px;
  font-style: italic;
  padding: 6px 0 6px 4.125rem;
  font-weight: 600;
}
.video-btn > span {
  position: absolute;
  left: 0;
  text-align: center;
  height: 3.6875rem;
  width: 3.6875rem;
  line-height: 3.6875rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  top: 0;
}
.video-btn:hover, 
.video-btn:focus {color: #fff;}

/*=== Pulse Animation ===*/
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4.0625rem;
  margin-left: -4.0625rem;
  background-color: inherit;
  -webkit-animation: pluse 2s linear infinite;
  -ms-animation: pluse 2s linear infinite;
  -o-animation: pluse 2s linear infinite;
  animation: pluse 2s linear infinite;
  width: 8.125rem;
  height: 8.125rem;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
}
.spinner:after {
  -webkit-animation: pluse 2s linear 2.3s infinite;
  -ms-animation: pluse 2s linear 2.3s infinite;
  -o-animation: pluse 2s linear 2.3s infinite;
  animation: pluse 2s linear 2.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
/************************/
.breadcrumb {
  background: var(--grad-soft);
}
.breadcrumb figure {
  position: relative;
  margin: 0;
}
.breadcrumb figure img {
  aspect-ratio: 2/1.2;
  object-fit: cover;
  border-radius: 30px;
}
.breadcrumb .links {
  font-size: 14px;
  color: var(--muted);
}
.breadcrumb .links a {
  color: var(--violet-700);
}
.hero-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero-panel .img {
  border-bottom: 1px solid var(--line);
}
.hero-panel img {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
}
.hero-panel .d-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
}
.hero-panel .item {
    background: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    transition: background .16s ease;
}
.hero-panel .item > span {
    width: 44px;
    height: 44px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 1.35rem;
    background: var(--violet-50);
    color: var(--violet-600);
}
.hero-panel .item div {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}
.hero-panel .item .num {
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 700;
}
.hero-panel .item:hover {
  background: var(--violet-50);
}
.cta {
    position: relative;
    background: var(--grad);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 22px);
    opacity: .5;
}
.cta .btn {
  display: inline-flex;
  align-items: center;
  gap:10px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--violet-700);
}
.table-card {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background: var(--white);
}
.tool-table {
    width: 100%;
    border-collapse: collapse;
}
.tool-table tr {
    border-bottom: 1px solid var(--line);
}
.tool-table td {
    padding: 18px 20px;
    vertical-align: top;
}
.tool-table__num {
    width: 56px;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--violet-700);
    background: var(--violet-50);
    border-right: 1px solid var(--line);
}
.tool-table__cat h3 {
    font-size: 1.02rem;
    margin: 0 0 8px;
    color: var(--ink);
}
.tool-table__cat ul {
    margin: 0;
    padding: 0 0 0 20px;
}
.tool-table__cat li {
    position: relative;
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.45;
}
.info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
}
.info-card .ico {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    flex: none;
    font-size: 1.1rem;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--grad-soft);
    color: var(--violet-600);
}
.info-card a,
.info-card p {
    color: var(--violet-700);
    margin: 0;
}
.card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--grad);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transform: scaleX(.5);
    transform-origin: center;
    transition: opacity .22s ease, transform .22s ease;
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--violet-200);
}
.card:hover:before {
    opacity: 1;
    transform: scaleX(1);
}
.form1,
.form1 .form-control {
  font-size: 14px;
}
.form1 select {
  appearance: auto;
}
.aboutus {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.5;
}
.aboutus figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 30px;
}
.aboutus .card p {
  margin: 0;
}
.checklist1 {
    display: grid;
    gap: 7px;
    padding: 0;
    list-style: none;
}
.checklist1 li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
}
.checklist1 li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--violet-600);
    font-weight: 800;
    font-size: .8rem;
}
.checklist2 {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}
.checklist2 li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--ink-soft);
    font-weight: 500;
}
.checklist2 li::before {
    content: "✓";
    flex: none;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--grad);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
}

.counter_wrap .card .icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--grad-soft);
    color: var(--violet-600);
    margin: 0 auto;
    margin-bottom: 16px;
    font-size: 1.5rem;
}
.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: Fraunces, Georgia, serif;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0;
}
.cert-frame {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.nabet > div {
  max-height: 450px;
  overflow: auto;
}
.nabet table {
  width: 100%;
  max-height: 500px;
  overflow: auto;
  font-size: 14px;
}
.nabet table tbody {
  display: grid;
  gap:8px;
}
.nabet table tr {
  display: grid;
  align-items: center;
  grid-template-columns: 40px 1fr 80px 90px 60px;
  border:1px solid var(--violet-50);
  border-radius: 8px;
}
.nabet table tr:hover { border-color: var(--line);}
.nabet table tr:first-child {
  border-color: var(--line);
  font-weight: 600;
  color: var(--violet-700);
}
.nabet table td:first-child {
  width: 60px;
  font-weight: 600;
  color: var(--violet-700);
}
.nabet table td:nth-child(2) {
  text-align: left;
}
.nabet table td:nth-child(3) { width: 100px;}
.nabet table td:nth-child(4) { width: 100px;}
.nabet table td:nth-child(5) { width: 65px;}
.nabet table tr td {
  padding: 12px 16px;
}
.nabet table tr td span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
}
.nabet table tr td .cata {
  background-color: var(--violet-100);
  color: var(--violet-700);
}
.nabet table tr td .catb {
  background-color: var(--cbg4);
  color: var(--amber-400);
}

.tabs .tab {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 20px;
  font-size: 13px;
  transition: var(--transition);
}
.tabs .tab.active {
  background: var(--grad);
  color: var(--white);
  border: 1px solid var(--violet-600);
}
.tabs .tab:hover:not(.active) {
  color: var(--violet-700);
  border: 1px solid var(--violet-600);
}
.solutions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.service-item {
  /* overflow: hidden; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-item .inner {
  background: var(--white);
  color: var(--muted);
  border: 1px solid var(--violet-100);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 4px 12px #00000005;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap:10px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
  font-size: 14px;
}
.service-item .inner a {
  font-weight: 600;
  color: var(--violet-700);
}
.service-item .inner p {
  color: initial;
  border-bottom: 1px dashed var(--violet-200);
  margin: 0;
  padding-bottom: 10px;
}
.service-item .inner .cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--violet-600);
  background: var(--violet-50);
  padding: 5px 12px;
  border-radius: 100px;
}
.service-item .inner .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-item.cat14 .inner .icon {
  background: #e0f2fe;
  color: #0284c7;
}
.service-item.cat15 .inner .icon {
  background: var(--violet-50);
  color: var(--violet-600);
}
.service-item.cat16 .inner .icon {
  background: #ffedd5;
  color: #ea580c;
}
.service-item.cat17 .inner .icon {
  background: #f3e8ff;
  color: #9333ea;
}
.service-item.cat18 .inner .icon {
  background: #e0e7ff;
  color: #4f46e5;
}
.service-item.cat19 .inner .icon {
  background: #ecfccb;
  color: #4d7c0f;
}
.service-item:hover .inner {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px #0000000f;
  border-color: var(--violet-200);
}

.blogs .item {
	display: block;
	background-color: var(--grey);
	font-size: 14px;
	color: var(--black);
	border-radius: 20px;
	overflow: hidden;
	padding: 10px;
}
.blogs .item figure {
    position: relative;
    width: 100%;
    transition: var(--transition);
	border-radius: 10px;
	overflow: hidden;
}
.blogs .item figure img {
	width: 100%;
	aspect-ratio: 2/1.3;
	object-fit: cover;
	transition: var(--transition);
}
.blogs .item h4,
.blogs .item p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.blogs .item p {
	-webkit-line-clamp: 3;
	line-clamp: 3;
	line-height: 1.4;
	margin-bottom: 10px;
}
.blogs .item .desc {
	padding: 0 10px;
}
.blogs .item .table td {
	padding: 3px 10px;
}
.blogs .item .viewmore {
	margin: 0 10px;
	color: var(--color4);
}
.blogs .item .viewmore span:last-child {
	color: var(--color5);
}
.blogs .item:hover figure img {
	transform: scale(1.1);
}

.ai-tab .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.ai-tab .nav-link.active {
    color: var(--ink);
    border-color: var(--violet-500);
    background: var(--violet-50);
}
.ai-tab .nav-link:not(.active):hover {
    border-color: var(--violet-400);
    transform: translate(3px);
}
.ai-tab .icon { font-size: 1.5rem;}
.ai-detail .card { display: block; font-size: .85rem; color: var(--muted);}
.ai-detail .card h6 { text-transform: uppercase; color:var(--muted); font-size: .8rem; letter-spacing: .5px; margin: 10px 0;}
.ai-detail .icon { font-size: 2.4rem;}
.ai-detail .head .tag { margin: 0 5px 0 0; border: none; text-transform: uppercase;}
.tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--violet-700);
    background: var(--violet-50);
    padding: 4px 11px;
    border: 1px solid var(--violet-200);
    border-radius: 999px;
    margin-bottom: 10px;
}
.govern {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: var(--grad-warm);
    border: 1px solid #f0e3c5;
    border-radius: var(--radius-lg);
    padding: 32px;
}
.govern .icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--white);
    color: var(--violet-600);
    margin-bottom: 16px;
    font-size: 1.5rem;
}
.govern p {
  color: var(--muted);
  margin: 0;
}
.roadmap .card {
  color: var(--muted);
}
.roadmap .icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--grad-soft);
    color: var(--violet-600);
    margin-bottom: 16px;
    font-size: 1.5rem;
}
.product-frame {
    background: var(--grad-soft);
    border: 1px solid var(--violet-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
}
.product-frame img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
  .navbar-collapse { background-color:var(--white); margin-right: calc(var(--bs-gutter-x) * -.5); margin-left: calc(var(--bs-gutter-x) * -.5);}
  .nav-item { padding:0;}
  .nav-item .btn-group { width: 100%; flex-wrap: wrap; position: relative;}
  .nav-item .btn-group .nav-link { flex-grow: 1;}
  .nav-item .btn-group .dropdown-toggle { position: absolute; right: 0; top: 0; padding: 9px 20px;}
  .nav-item .nav-link { padding:10px 20px; border-top:1px solid rgba(var(--black-rgb), .2);}
  .nav-item:hover .nav-link { transform: translateY(0);}
  .nav-item.dropdown.full-width .dropdown-menu { position:relative; width:100%; display:none; padding: 0;}
  .nav-item.dropdown.full-width .dropdown-menu.show { display:block;}
  .dropdown-toggle::after { float:right;}
  .dropdown-toggle.show::after { transform:rotateX(180deg) scale(0.5);}
  .full-width .links { grid-template-columns:1fr; padding: 0 20px; row-gap: 0;}
  .full-width .links a { padding: 5px 0;}
  .nav-item .nav-link::before,
  .layer::before { display: none;}

	.owl-slide .item img { height: 100svh;}
	.services .d-grid { grid-template-columns: 1fr;}
	.certificates .item { flex-direction: column; text-align: center;}
	.layer { margin-left: 0px; min-height: 0px; border-left-width: 5px; border-left-style: solid; border-radius: 12px; padding: 14px;}
	.layer1 { background: var(--cbg);}
	.layer2 { background: var(--cbg2);}
	.layer3 { background: var(--cbg3);}
	.layer4 { background: var(--cbg4);}
	.hero-panel .item { flex-direction: column; text-align: center;}
	.govern { flex-direction: column; gap:0;}
	.certificates .item.type2 figure { width:100%;}
}