﻿/* ==================== Import Fonts ==================== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* ====================== ROOT VARIABLES ====================== */
:root {
  --ff-body: Inter;
  --fs-body: 16px;
  --ff-heading: 'Manrope';
  --color-golden-1: #fdb900;
}


:root {
  --ff-body: 'Manrope', sans-serif;
  --ff-heading: 'Manrope', sans-serif;
  --color-golden-1: #fdb900;
  --transition: all 0.3s ease-in-out;
}

:root {
  --blue-color: #025EC1;
  --heading-color: #213245;
  --text-color: #59616B;
  --light-color: #EDF4FB;
  --color-common-white: #ffffff;
  --color-common-black: #000000;
  --bg-color: #F5F6F6;

  --red-color: #ED2E27CC;
  --fw-normal: normal;
  --fw-thin: 100;
  --fw-elight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-sbold: 600;
  --fw-bold: 700;
  --fw-ebold: 800;
  --fw-black: 900;
}

/* ==================== RESET ==================== */

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


html {
  scroll-behavior: smooth !important;
  font-size: 1rem;
}

body {
  line-height: 1.625;
  position: relative;
  word-wrap: break-word;
  background-color: var(--color-common-white);
  color: var(--text-color);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: normal;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  font-size: inherit;
  display: inline-block;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
svg path,
*::after,
*::before {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

button,
input,
textarea {
  border: none;
  outline: none;
  resize: none;
}

.form-control:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
}

/* ==================== Typography ==================== */
/* =========================
   Heading Base Styles
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--ff-heading);
  font-weight: var(--fw-sbold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: 80px;
  line-height: 1.027;
}

h2 {
  font-size: 48px;
  line-height: 1.167;
  font-weight: var(--fw-bold);
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.25;
}

h4 {
  font-size: var(--fs-h4);
  line-height: 1.333;
}

h5 {
  font-size: var(--fs-h5);
  line-height: 1.4;
}

h6 {
  font-size: var(--fs-h6);
  line-height: 1.444;
}

/* =========================
   Heading Links
========================= */

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

p {
  color: var(--color-text-body);
  font-size: 16px;
  font-weight: var(--fw-medium);
}

sup {
  top: -1.2em;
  left: .2em;
}

sub,
sup {
  position: relative;
  font-size: .45em;
  line-height: 0;
  vertical-align: baseline;
}

/* ==================== Common Heading Classes ==================== */

/* ==================== Common Layout ==================== */
.side-space {
  padding: 30px;
}

.common-sec {
  position: relative;
  padding-block: 100px 100px;
}

.container-lg,
.container {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.container-lg {
  max-width: 1860px;
}

.container {
  max-width: 1320px;
}



/* ==================== Utility ==================== */

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

.shadow-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

body.nav-open .shadow-overlay {
  opacity: 1;
  visibility: visible;
}

p:last-child {
  margin-bottom: 0;
}

.fx-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-fit {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pop,
.smooth {
  transition: var(--transition);
}

.pop:hover {
  transform: scale(1.05);
}

/* ==================== Global Icons ==================== */

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: var(--transition);
}

.icon-check {
  mask-image: url("../img/svg/check.svg");
}

.sub-title-logo {
  mask-image: url(../img/svg/sub-title-logo.svg);
}

/* ======================= BUTTON ======================= */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--blue-color);
  color: var(--color-common-white);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 24px 8px 8px;
  flex-direction: row;
  text-align: center;
  border-radius: 50px;
  line-height: 1;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  text-transform: capitalize;
}

/* Text */
.primary-btn .btn-text {
  color: var(--color-common-white);
  overflow: hidden;
}

.primary-btn .btn-text span {
  display: flex;
  line-height: 1.3;
  text-shadow: 0 30px 0 var(--blue-color);
  backface-visibility: hidden;
  transform: translateY(0);
  transition: transform 0.4s ease-in-out;
}

/* Icon */
.primary-btn .btn-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
  color: var(--blue-color);
}

.primary-btn .btn-icon::before {
  content: "";
  background-color: var(--color-common-white);
  width: 32px;
  height: calc(100% - 16px);
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: -1;
  border-radius: 50px;
  transition: width 0.3s ease-in-out;
}

.primary-btn .btn-icon i {
  font-size: 12px;
  color: var(--blue-color);
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}


/* white button */
.primary-btn.white {
  background-color: var(--color-common-white);
  color: var(--blue-color);
}

.primary-btn.white .btn-text span {
  color: var(--blue-color);
  text-shadow: 0 30px 0 var(--color-common-white);
}

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

.primary-btn.white .btn-icon i {
  color: var(--color-common-white);
}



/* Hover */
.primary-btn:hover .btn-text span {
  transform: translateY(-30px);
}

.primary-btn:hover .btn-icon::before {
  width: calc(100% - 16px);
}


.primary-btn:hover .btn-icon i {
  transform: rotate(45deg);
}



.arrow_tr {
  mask-image: url(../img/icons/arrow_tr.svg);
}

/* ========================== HEADER STYLE ================== */

/* sticky header space */

.header-bottom.sticky {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-start-start-radius: 0;
  border-start-end-radius: 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1060;
  transform: translateY(-100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  opacity: 0;
}



.header-bottom.sticky .header-inner {
  position: relative;
  z-index: 1;
}

.header-bottom.sticky.sticky-show {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.inner-page .header-bottom.sticky {
  background-color: transparent;
}

.inner-page .header-bottom.sticky .header-inner {
  background-color: var(--color-theme-bg);
  filter: none;
  border-start-end-radius: 0;
  border-start-start-radius: 0;
}

.header.header-absolute {
  top: 30px;
  position: absolute;
  left: 0;
}

.header {
  /* padding: 0px 30px; */
  background-color: transparent;
  width: 100%;
  z-index: 98;

}

/* header top content */

.header-top-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header-top p {
  padding: 15px 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.icon-gear {
  mask-image: url('../img/svg/gear.svg');
}

.icon-lightning {
  mask-image: url('../img/svg/Lightning.svg');
}

.icon-clock {
  mask-image: url(../img/svg/Clock.svg);
}

.header-top .header-info .info-item:first-child {
  border: 0;
}

.header-top .header-info .info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0 15px;
  border-left: 2px solid var(--color-border-1);
  line-height: 1;
}

.header-top .header-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.header-top p i {
  color: var(--color-theme-primary);
  animation: zoomEffect 1.5s linear infinite;
}

.header-top i {
  color: var(--color-theme-primary);
}

.header-top p a {
  color: var(--color-theme-primary);
  font-weight: var(--fw-medium);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
}

.header-top p a::after {
  content: "";
  height: 14px;
  width: 14px;
  mask-image: url(../img/svg/arrow-right.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: currentColor;
  margin-left: 4px;
  margin-top: 3px;
  transform: rotate(-45deg);
}

.header-top p a:hover::after {
  transform: rotate(0);
}

.header-top .icon {
  color: var(--color-theme-primary);
}

.header-top .header-info .info-item a {
  color: var(--color-text-body);
}

.header-top .header-info .info-item a:hover {
  color: var(--color-heading-primary);
}

/* ===========================bottom header========================= */
.header-bottom {
  padding: 0 15px;
}

.header-bottom.sticky .container-lg {
  padding-left: 0px;
  padding-right: 0px;
}

.header-bottom .header-inner {
  /* padding: 0 20px; */
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  position: relative;
}

.header-bottom .header-inner.blur {
  background-color: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(40px);

}

.site_logo {
  line-height: 0;
  padding: 20px 0;
  padding-right: 71px;

}

.site_logo img {
  height: 100%;

}

.site_logo a {
  height: 70px;
}

/* ==================== header main nav ==================== */

.main-nav>ul {
  display: flex;
  align-items: center;
  gap: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav>ul>li {
  position: relative;
}

.main-nav>ul>li>a {
  font-size: 16px;
  font-weight: var(--fw-sbold);
  color: var(--color-text-body);
  padding: 28px 0;
  padding-right: 24px;
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 5px;
}


.main-nav>ul>li:has(ul)>a::after {
  content: "";
  height: 7px;
  width: 12px;
  mask-image: url(../img/svg/down-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: currentColor;
  line-height: 0;
  transition: var(--transition);
}

.main-nav>ul>li:hover>a::after {
  transform: rotate(180deg);
}


.main-nav>ul>li:hover>a,
.main-nav>ul>li>a:hover {
  color: var(--color-theme-primary);
}

.header-3 .main-nav ul:not(.sub-menu)>li>a {
  color: var(--heading-color);
}

.header-3 .main-nav ul:not(.sub-menu)>li>a:hover {
  color: var(--blue-color);
}

.main-nav ul>li:last-child a {
  padding-right: 0;
}

/* =================================sub menu============================ */



.main-nav ul li ul li {
  width: 100%;
}

.main-nav ul li ul li a {
  padding: 10px 20px;
  display: block;
  color: var(--color-text-body);
  font-size: 15px;
}

.main-nav ul li ul li a:hover {
  color: var(--color-theme-primary);
  padding-left: 26px;
}

/* search-btn */
.search-btn {
  color: var(--blue-color);
  background-color: transparent;
  border: none;
  font-size: 23px;
  line-height: 0;
  cursor: pointer;
}

.search-btn:hover i {
  animation: bellShake 1.5s ease;
}

.icon-search {
  mask-image: url("../img/svg/search.svg");
}

.arrow_right_icon {
  mask-image: url("../img/svg/arrow-right.svg");
}

.arrow_left_icon {
  mask-image: url("../img/svg/arrow-left.svg");
}

/* mobile menu */
.menu-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;

}

.cubes {
  display: flex;
  flex-wrap: wrap;
  width: 48px;
  height: 48px;
  gap: 2px;
  padding: 13px;
  background-color: var(--blue-color);
  border-radius: 50%;
}

.cubes span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 2px solid var(--color-common-white);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.menu-toggle:hover .cubes span {
  border-radius: 22px;
}

/* header-action */
.header-action {
  display: flex;
  align-items: center;
  gap: 20px;
}




/* social icons  */
.icon_facebook {
  mask-image: url(../img/icons/facebook.svg);
}

.icon_tw {
  mask-image: url(../img/icons/twitter.svg);
}

.icon_insta {
  mask-image: url(../img/icons/instagram.svg);
}

.icon_wapp {
  mask-image: url(../img/icons/whatsapp.svg);
}

.icon_arrow-right {
  mask-image: url(../img/icons/arrow-right.svg);
}

.icon_arrow-left {
  mask-image: url(../img/icons/arrow-right.svg);
  transform: rotate(180deg);
}

.icon_hand-heart {
  mask-image: url(../img/icons/hand-heart.svg);
}

.icon_thumbs-up {
  mask-image: url(../img/icons/thumbs-up.svg);
}

.icon_idea {
  mask-image: url(../img/icons/bulb.svg);
}



/* ================================ Hero Section ================================ */
/* ----------------------------------------
   START: Hero CSS
---------------------------------------- */

.hero-sec.common-sec {
  position: relative;
  z-index: 1;
  background-color: var(--color-theme-bg);
  border-radius: 20px;
  padding-top: 214px;
  padding-bottom: 60px;
  min-height: 865px;
  overflow: hidden;
}

.hero-sec .hero-bg {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}



/* banner content */


.hero-sec .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--color-text-body);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  margin-bottom: 15px;
}

.hero-sec .sub-title i,
.hero-sec .sub-title span {
  color: var(--blue-color);
}

.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--red-color);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: var(--fw-sbold);
  margin-bottom: 20px;
}

.sub-title i,
.sub-title span {
  color: var(--blue-color);
}

.sub-title img {
  flex-shrink: 0;
  width: 25px;
  height: 20px;
  object-fit: contain;
  margin-right: 7px;
}

.sub-title.round {
  color: var(--color-text-body);
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0;
  border: 1px solid var(--color-border-1);
  background-color: rgba(250, 251, 251, 0.08);
  padding: 5px 10px;
  border-radius: 40px;
}



.sec-title {
  margin-bottom: 24px;
}

.sec-title span {
  color: var(--blue-color);
}

.sec-sm-title {
  font-size: 32px;
  font-weight: var(--fw-bold);

  line-height: 1.2;
  letter-spacing: -0.02em;

}

.mb-40 {
  margin-bottom: 40px;
}

.sec-head.small-width {
  max-width: 565px;
  margin-left: auto;
  margin-right: auto;
}

.mid-width {
  max-width: 758px;
  margin-left: auto;
  margin-right: auto;
}

/* buttons */






.icon-phone {
  mask-image: url('../img/svg/phone-call.svg');
}












.icon-shield {
  mask-image: url(../img/svg/shield.svg);
}


/* customers box */

.customers-box {
  background-color: var(--color-theme-dark);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 28px 24px 28px;
}

.customers ul li img {
  width: 58px;
  height: 58px;
  background-color: var(--color-common-white);
  border: 2px solid var(--color-common-white);
  border-radius: 50%;
}

.customers ul li {
  line-height: 1;
  margin-inline-start: -22px;
}

.customers ul {
  display: inline-flex;
  list-style: none;
  padding-left: 22px;
}

/* rating */
.banner-img-area .customers-box .rating-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 20px 0 12px 0;
}

.customers-number {
  font-size: 65px;
  font-family: var(--ff-heading);
  font-weight: var(--fw-sbold);
  line-height: 0.8;
}

.customers-text {
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 0;
  font-weight: var(--fw-medium);
}

.list-style-1 li {
  display: flex;
  gap: 6px;
  font-family: var(--ff-heading);
  font-weight: var(--fw-medium);
}

.list-style-1 li span {
  width: 22px;
  height: 22px;
  background: var(--color-theme-primary);
  color: var(--color-theme-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* scroll */
.banner-scroll {
  position: absolute;
  inset-inline-start: 30px;
  bottom: 30px;
}

.banner-scroll .scroll-down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-text-body);
}

.banner-scroll .scroll-down .text {
  writing-mode: vertical-lr;
  transform: scale(-1);
}

.banner-scroll .scroll-down .iconW {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 22px;
  background-color: rgba(250, 251, 251, 0.08);
  border-radius: 50%;
  overflow: hidden;
  text-shadow: 0 -30px 0 var(--color-theme-dark);
  transform: rotate(90deg);
}

.banner-scroll .scroll-down .iconW i {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.banner-scroll .scroll-down .iconW i::before {
  content: "";
  position: absolute;
  left: -200%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  mask-image: url("../img/svg/arrow-right.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;

}

.banner-scroll .scroll-down:hover {
  transform: translateY(6px);
  color: var(--color-theme-primary);
}

.banner-scroll .scroll-down:hover .iconW {
  background-color: var(--color-theme-primary);
  color: var(--color-theme-dark);
}

.banner-scroll .scroll-down:hover .iconW i {
  transform: translateX(200%);
}

/* ----------------------------------------
   END: Hero CSS
---------------------------------------- */






/* ==================== Features Section ==================== */


.hero-slider-section .features-section .container {
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  padding: 0 !important;
  padding-right: 91px !important;
}




/* ==================== END ==================== */



/* ==================================== About Us ========================= */
.about-sec {
  position: relative;
  overflow: hidden;

}

.about-left-bottom {
  display: flex;
  align-items: end;
  gap: 15px;
  margin-top: -80px;
}

.about-img {
  position: relative;
  mask-image: url(../img/abs__start__inner.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: top left;
}

.experience-area {
  max-width: 276px;
  width: 100%;
  background-color: #025EC112;
  border-radius: 22px;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.experience-area .exp-badge {
  position: absolute;
  top: 25px;
  right: -45px;
  width: 190px;
  font-size: 14px;
  font-weight: var(--fw-sbold);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transform: rotate(45deg);
  background-color: var(--color-theme-dark);
  color: var(--color-common-white);
  text-align: center;
  line-height: 1;
  padding: 5px 0;
}

.fix {
  overflow: hidden;
}

.countup-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.inline-content {
  color: var(--heading-color);
  font-size: 64px;
  line-height: 1;
  font-weight: var(--fw-sbold);
  font-family: var(--ff-heading);
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}

.experience-area p {
  line-height: 1.5;
  font-weight: var(--fw-medium);
  margin: 0;
}

.author-area {
  max-width: 380px;
  width: 100%;
  background-color: #025EC112;
  border: 1px solid var(--color-border-1);
  border-radius: 22px;
  position: relative;
  display: flex;

  align-items: center;
  padding: 0 38px;
}

/* Author Info */
.author-area .author-info {
  max-width: 225px;
  width: 100%;
  position: relative;
}

.author-area .signature::before {
  position: absolute;
  content: "";
  top: 50%;
  inset-inline-start: -15px;
  width: 1px;
  height: calc(100% - 40px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  transform: translateY(-50%);
}

/* Author Image */
.author-area .author-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
}

/* Author Text */
.author-area .author-text {
  display: flex;
  flex-direction: column;
}

.author-area .author-text .author-name {
  font-size: 20px;
  margin-bottom: 6px;
}

.author-area .author-text span {
  line-height: 1;
}

/* Signature */
.author-area .signature {
  position: relative;
  max-width: 114px;
  width: 100%;
  padding: 35px 0;
  margin-inline-start: 16px;
}

/*============================ about Right Side ======================= */
.about-sec {
  position: relative;
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 16px;
  padding: 50px;
  padding-bottom: 12px;
}

.about-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mask-image: url(../img/Subtract.png);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: bottom right;
  background-color: rgba(2, 94, 193, 0.71);
  z-index: -1;
}

.about-content p {
  margin-bottom: 24px;
}

.about-content .sec-head {
  margin-bottom: 15px;
}

.about-facts {
  display: flex;
  gap: 61px;
}

.about-facts .fact-item {
  max-width: 215px;
  width: auto;
  position: relative;
}

.about-facts .fact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: -30px;
  width: 1px;
  height: calc(100% - 1em);
  border-right: 1px solid #21324526;
}

.about-facts .inline-content {
  font-size: 64px;
  margin-bottom: 5px;
}

.countup-item p {
  font-size: 16px;
  margin-bottom: 0;
}

/* about btn */
.about-btn {
  margin-top: 31px;
}

.about-sec .award-wrap {
  position: absolute;
  right: 0;
  bottom: 0;

}

.award-wrap {
  height: 178px;
  width: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/skull.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 50%;

}

.award-wrap .text-wrap {
  background-image: url(../img/awardtect.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 146px;
  height: 146px;
  -webkit-animation: textRotate 20s infinite linear;
  animation: textRotate 20s infinite linear;

}

.award-wrap .iconWrap {
  height: 80px;
  width: 80px;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-common-white);

}

.iconWrap .icon {
  mask-image: url(../img/svg/Clock.svg);

}

.award-wrap:hover .icon {
  transform: rotateY(360deg);
}

/* ============================== About End========================= */

/* =============================== why choose us =============================== */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-wrapper::before,
.slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.slider-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.scroll-slider {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  align-items: center;
  gap: 10px;

}

.scroll-slider:not(:last-child) {
  margin-bottom: 10px;
}

.scroll-wrapper {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  min-width: 100%;
  animation: scroll 30s linear infinite;
}

.scroll-slider:nth-child(even) .scroll-wrapper {
  animation-direction: reverse;
}

.us-card .box {
  padding: 40px 30px;
  display: flex;
  align-items: start;
  gap: 20px;
  border-radius: 12px;
  max-width: 380px;
  height: 100%;
  overflow: hidden;
}

.us-card .box .img-icon {
  flex-shrink: 0;
  padding: 11px;
  background-color: var(--text-color);
  border-radius: 50%;
}

.us-card .box .img-icon img {
  height: 28px;
  width: 28px;
  filter: brightness(0) invert(1);
}

.us-card .box .title {
  font-size: 20px;
  font-weight: var(--fw-sbold);
  text-transform: capitalize;
}

.scroll-wrapper .us-card:nth-child(odd) .box {
  background-color: #025EC10F;
}

.scroll-wrapper .us-card:nth-child(even) .box {
  background-color: #59616B0F;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 10px));
  }
}

.last-btn {
  margin-top: 40px;
}

.primary-btn.border {
  background-color: transparent;
  border: 1px solid var(--blue-color) !important;
  color: var(--blue-color);

}

.primary-btn.border span {
  color: var(--blue-color);
  text-shadow: 0 30px 0 var(--color-common-white)
}

.primary-btn.border .btn-icon::before {
  background-color: var(--blue-color);
}

.primary-btn.border .btn-icon i {
  color: var(--color-common-white);
}

/* .primary-btn.border:hover .btn-text {
  color: var(--color-common-white);
} */

/* =============================== why choose us End =============================== */

/* =============================== Specialty Clinics =============================== */

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

.specialty-clinics .row {
  --bs-gutter-x: 0;
}

.clinic-sidebar {
  background-color: rgba(89, 97, 107, 0.05);
  border-radius: 22px;
  padding: 20px;
  max-width: 400px;
}

.custom-nav-tabs {
  display: flex;
  flex-direction: column;
  border: none;
}

.custom-nav-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 54px;
  padding: 0px 16px;
  border-radius: 12px;
  background-color: transparent;
  color: var(--text-color);
  font-size: 16px;
  font-weight: var(--fw-sbold);
  border: none;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
}


.custom-nav-tabs .nav-link.active,
.custom-nav-tabs .nav-link:hover {
  background-color: var(--color-common-white) !important;
  color: var(--heading-color) !important;
}

.custom-nav-tabs .nav-link .tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--blue-color);
  color: var(--color-common-white);
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  position: absolute;
  left: 16px;
}

.custom-nav-tabs .nav-link.active .tab-num,
.custom-nav-tabs .nav-link:hover .tab-num {
  opacity: 1;
  transform: translateX(0);
}

.custom-nav-tabs .nav-link .tab-text {
  transition: all 0.3s ease;
}

.custom-nav-tabs .nav-link.active .tab-text,
.custom-nav-tabs .nav-link:hover .tab-text {
  transform: translateX(35px);
  color: var(--blue-color);
}

.custom-nav-tabs .nav-link .tab-arrow {
  font-size: 12px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(10px);
  color: var(--blue-color);
  transition: all 0.3s ease;
}

.custom-nav-tabs .nav-link.active .tab-arrow,
.custom-nav-tabs .nav-link:hover .tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

.clinic-tab-content {
  border: 1px solid #2132451A;
  border-radius: 22px;
  padding: 30px;
  padding-top: 20px;
  height: 100%;
}

.clinic-pane-inner {
  display: flex;
  gap: 20px;
  height: 100%;
}

.clinic-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  border: 1px solid #59616B1A;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-common-white);
  margin-top: 10px;
}

.clinic-header {
  gap: 20px;
}

.clinic-title {
  font-size: 32px;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  text-transform: capitalize;
  letter-spacing: 0;
}

@media (max-width: 991px) {
  .clinic-sidebar {
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    left: -150%;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    z-index: 1050;
    border-radius: 0;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
    overflow-y: auto;
  }

  .custom-nav-tabs .nav-link:hover,
  .custom-nav-tabs .nav-link.active {
    background: rgba(89, 97, 107, 0.05) !important;
  }

  .clinic-sidebar.active {
    left: 0;
  }

  .sidebar-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--heading-color);
    cursor: pointer;
  }

  .clinic-tab-content {
    padding: 24px;
  }
}

/* =============================== Specialty Clinics End =============================== */

/* Blur Shadow Overlay for Clinic Sidebar */
.clinic-sidebar-opened .clinc-blur-overlay {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 3;
}

.hmin .header {
  z-index: -1 !important;
}



/* ===============================
   Text Button (FIXED)
================================ */
.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 16px;
  line-height: 1;
  color: var(--blue-color);
  overflow: hidden;
  text-transform: capitalize;
}

/* Icon base */
.text-btn .btn-icon {
  flex-shrink: 0;

  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all 0.3s ease-in-out;
}

/* Hide first icon initially */
.text-btn .btn-icon:first-child {
  margin-inline-start: -25px;
  opacity: 0;
}

/* Hover animation */
.text-btn:hover {
  color: var(--blue-color);
}

.text-btn:hover .btn-icon:first-child {
  margin-inline-start: 0;
  opacity: 1;
}

.text-btn:hover .btn-icon:last-child {
  margin-inline-end: -25px;
  opacity: 0;
}

.clinic-img {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  border: 1px solid #2132450D;
}

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

/* ============================ Meet Our Experts ========================== */
.expert-sec {
  background-color: var(--bg-color);
}

.team-item {
  background-color: var(--color-common-white);
  border: 1px solid rgba(89, 97, 107, 0.1);
  border-radius: 10px;
  padding: 12px;
  margin: 0 auto;
}

.team-item .team-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  max-height: 340px;
}

.team-item .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  transform-origin: center center;
  transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}

.team-item .social-links {
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease-in-out 0s;
  background-color: var(--color-common-white);
  border-top-left-radius: 10px;
  padding: 12px 11px;
  z-index: 2;
}

.team-item .social-links::after,
.team-item .social-links::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: -20px;
  right: 0;
  width: 10px;
  height: 20px;
  box-shadow: 0 10px 0 0 var(--color-common-white);
  border-bottom-right-radius: 10px;
  z-index: -1;
}

.team-item .social-links::after {
  top: auto;
  right: auto;
  bottom: 0;
  left: -10px;
}

.team-item .social-links .share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-color);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--color-common-white);
  line-height: 1;
  position: absolute;
  right: 9px;
  bottom: 12px;
  z-index: 2;
  transition: all 0.3s ease;
}

.team-item .social-links ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
  list-style: none;
  padding-left: 0;
  margin-bottom: 8px;
  padding-top: 10px;
}

.team-item .social-links ul li {
  margin-bottom: -32px;
}

.team-item .social-links ul li:last-child {
  margin: 0;
}

.team-item .social-links ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--text-color);
  color: var(--color-common-white);
  font-size: 15px;
  line-height: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.team-item .social-links ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 100%;
  left: 0;
  background-color: var(--blue-color);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s linear;
}

.team-item .social-links ul li a:hover {
  color: var(--color-common-white);
}

.team-item .social-links ul li a:hover::before {
  top: 0;
}

.team-item .team-content {
  padding: 21px 16px 14px 14px;
  width: 100%;
}



.team-item .title {
  display: block;
  font-size: 24px;
  font-weight: var(--fw-bold);
  margin-bottom: 2px;
  letter-spacing: 0;
}

.team-item .title a {
  color: var(--heading-color);
}

.team-item .title a:hover {
  color: var(--blue-color);
}

.team-item .designation {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1;
  display: inline-flex;
}

.team-item:hover .team-img img {
  transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
}

.team-item:hover .share-icon {
  opacity: 0;
  visibility: hidden;
}

.team-item:hover .social-links ul {
  gap: 10px;
  opacity: 1;
}

.team-item:hover .social-links ul li {
  margin: 0;
}

.team-wrapper {
  display: flex;
  gap: 20px;
}

.icon_lnkdn {
  mask-image: url(../img/icons/linkedin.svg);
}

.icon_shared {
  mask-image: url(../img/icons/share.svg);
}

/* ============================ Video Reels ========================== */
/* .swiper  */
.border-light .slider-next,
.border-light .slider-prev {
  border: 1px solid rgb(2, 94, 193, .15);
}

.top-side {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.reel-card {
  border-radius: 16px;
  overflow: hidden;
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
}

.video-reel-slider {
  overflow: visible;
}

.video-reel-pagination {
  position: absolute;
  bottom: 10px !important;
}


.reel-card .box {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
}

.reel-card .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.reel-card .reel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 5;
}

.reel-card .top-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 32px;
  height: auto;
}

.reel-card .top-icon img {
  width: 100%;
  height: auto;
}

.reel-card .bottom-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 15px 15px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);

}

.reel-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  color: var(--color-common-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Play Button Overlay with Pulse Effect */
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.play-icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--color-common-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.play-icon-box img {
  width: 16px;
  height: auto;
}

.play-btn-overlay:hover .play-icon-box {
  background-color: var(--blue-color);
}

.play-btn-overlay:hover .play-icon-box img {
  filter: brightness(0) invert(1);
}

/* Pulses */
.play-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.15);
  z-index: 1;
  animation: reelPulse 2.5s infinite ease-out;
}

.play-pulse-ring.delay {
  animation-delay: 1.25s;
}

@keyframes reelPulse {
  0% {
    width: 44px;
    height: 44px;
    opacity: 1;
  }

  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

/* ======================================================
   Achievements Section Slider
   ====================================================== */
.achivements-slider {
  overflow: visible;
}

.achivements-slider .swiper-slide {
  width: 200px;
}

.achivement-card {
  width: 200px;
  height: 200px;
  background: #F0F6FC;
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.achivement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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








/* ===============================
   Working Process / Patient Journey
================================ */
.working-process-sec .container-lg {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

.working-process-sec .sec-head {
  padding: 0 0 60px;
}

.working-process-sec .sec-title {
  color: var(--color-common-white);
  line-height: 1.1;
}

.working-process-sec .sec-head .sub-title span {
  color: var(--color-theme-primary);
}

.working-process-sec .sec-head p.desc {
  max-width: 530px;
  font-size: 18px;
  opacity: 0.8;
}

.working-process-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.working-process-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 19, 39, 0) 0%, rgba(0, 19, 39, 0.9) 100%);
}

.process-area {
  position: relative;
  z-index: 1;
}

.process-area .container-lg {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Stats */
.journey-stats .stat-item {
  color: var(--color-common-white);
}

.journey-stats .stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.journey-stats .stat-label {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 0;
}


.journey-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  position: relative;
  padding: 0 20px;
}

/* left vertical line */
.stat-item::before,
.stat-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item::after {
  height: 45%;
  background: rgba(255, 255, 255);

}

/* right vertical line only for last */

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-common-white);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* Vertical Process */
.process-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 466px;
  margin-left: auto;
  position: relative;
  z-index: 0;
}

/* Vertical Line */
.process-border {
  position: absolute;
  top: 0;
  left: -45px;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
}

/* Item */
.process-item {
  position: relative;
}

/* Content Card */
.process-content {
  padding: 24px 30px;
  background: #FFFFFF0F;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.process-content .title {
  margin-bottom: 10px;
  color: var(--color-common-white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .06em;
}

.process-content .desc {
  margin-bottom: 0;
  color: var(--color-common-white);
  opacity: 0.7;
  font-size: 15px;
}

/* Step Circle */
.process-step {
  width: 50px;
  height: 50px;
  background-color: #FFFFFF0F;
  backdrop-filter: blur(20px);
  color: var(--color-common-white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -45px;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

/* Active / Hover State */
.process-item.active .process-content,
.process-item:hover .process-content {
  background: var(--blue-color);
  border-color: var(--blue-color);
}

.process-item.active .process-content .desc,
.process-item:hover .process-content .desc {
  opacity: 1;
}

.process-item.active .process-step,
.process-item:hover .process-step {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
}

/* Active Line highlight */
.process-item.active::before,
.process-item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -45px;
  width: 2px;
  height: 100%;
  background: var(--blue-color);
  transform: translateX(-50%);
  z-index: -1;
}

.working-process-sec .left {
  display: flex;
  flex-direction: column;
  height: 100%;

}

.working-process-sec .left .journey-stats {
  margin-top: auto;
}



/* ===============================
   Blog Section
================================ */
.tj-blog-section-2 .sec-heading {
  max-width: 450px;
}

.blog-item {
  height: 100%;
  background-color: rgb(89, 97, 107, .04);
  border: 1px solid rgb(33, 50, 69, .05);
  padding: 20px;
  border-radius: 22px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.blog-item .blog-thumb {
  height: 270px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.blog-item .blog-thumb a {
  display: inline-flex;
  width: 100%;
  height: 100%;
}

.blog-item .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s linear 0s;
}

.blog-item .blog-content {
  padding: 25px 15px 15px 15px;
}

.blog-item .blog-content .title {
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: var(--fw-ebold);
}

.small-blog-item .blog-content .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

.blog-item .blog-content .title a {
  color: inherit;
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 100%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 90%;
  display: inline;
  transition: background-size 0.3s ease;
  font-weight: inherit;
}

.blog-item .blog-content .title a:hover {
  background-size: 100% 2px;
  color: var(--color-theme-primary);
}

.blog-item .blog-content .desc,
.blog-item .blog-content .excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 20px;
}



.ecommerce-details-sec .blog-item {
  display: flex;
  flex-direction: column;
}

.ecommerce-details-sec .blog-item .blog-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex: 1;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 15px;
}

.ecommerce-details-sec .blog-item .blog-content .primary-btn {
  margin-top: auto !important;
}

.blog-item .blog-content .desc:last-of-type,
.blog-item .blog-content .excerpt:last-of-type {
  margin-bottom: 0;
}

.categories {
  margin-bottom: 0;
  display: inline-block;
}

.categories a {
  background-color: var(--color-common-white);
  color: var(--text-color);
  font-size: 14px;
  line-height: 1;
  font-weight: var(--fw-medium);
  padding: 3px 12px;
  display: inline-flex;
  overflow: hidden;
  border-radius: 100px;
}

.blog-item .text-btn {
  margin-top: 23px;
  font-weight: var(--fw-medium);
}

.blog-item .text-btn:hover {

  color: var(--color-theme-primary);
}

.blog-item:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.blog-meta span {
  color: var(--text-color);
  line-height: 1;
  font-size: 14px;
}


.blog-meta span a {
  color: var(--text-color);
  font-weight: var(--fw-sbold);
  transition: all 0.3s ease;
}

.categories a {
  border: 1px solid rgba(89, 97, 107, 0.1);
}

.categories a:hover {
  color: var(--color-common-white);
  background-color: var(--blue-color);
}

/* Layout Variations */
.featured-blog-item .blog-thumb {
  height: 420px !important;
}

.featured-blog-item .blog-content .title {
  font-size: 32px !important;
  line-height: 1.25 !important;
}

.small-blog-item {
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  height: auto;
}

.small-blog-item:last-child {
  margin-bottom: 0;
}

.small-blog-item .blog-thumb {
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.small-blog-item .blog-content {
  width: calc(100% - 170px);
  padding: 11px 0 11px 25px;
}

.small-blog-item .blog-content .excerpt,
.small-blog-item .blog-content .desc {
  display: none;
}

.mb-50 {
  margin-bottom: 50px;
}

/* cta */
.cta {
  position: relative;
  z-index: 2;
}

.cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #F5F9FE;
  z-index: -1;
}

.cta .container {
  position: relative;
  text-align: center;
  background-color: #025EC1;
  padding-top: 54px;
  padding-bottom: 54px;
  border-radius: 22px;
  z-index: 1;
  overflow: hidden;
}

.cta .container::before {
  content: "";
  position: absolute;
  height: 240px;
  width: 100%;
  left: 0;
  top: 0;
  background: url(../img/spine.png) center center no-repeat;
  background-size: cover;
  transform: rotate(10deg) translateY(50%);
  z-index: -1;
}

.cta .container .sec-title {
  color: var(--color-common-white);
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.cta .primary-btn {
  border: 1px solid var(--color-common-white);
}




/* Individual testimonial card */
.testimonial-wrapper {
  position: relative;
  display: flex;
  gap: 24px;
  max-height: 840px;
  height: 100%;
  overflow: hidden;
}

.testimonial-wrapper::before,
.testimonial-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 240px;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-wrapper::before {
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-wrapper::after {
  bottom: 0;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-card {
  flex-shrink: 0;
  width: 100%;
  max-width: 424px;
}

.testimonial-scroll,
.testimonial-scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-box {
  background-color: #F5F9FE;
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card .rating {
  position: absolute;
  top: 0px;
  right: 0px;
}

/* Quote mark background watermark */
.testimonial-avatar::after {
  content: '';
  position: absolute;
  height: 40px;
  width: 50px;
  right: 0;
  bottom: 0;
  line-height: 1;
  background: url(../img/quote.png) center center no-repeat;
  background-size: contain;

  z-index: 0;
}

/* Avatar section - top part with name/role and stars */
.testimonial-avatar {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-avatar .con {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  width: 100%;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.testimonial-role {
  font-size: 15px;
  font-weight: 400;
  color: rgb(89, 97, 107, .8);
  display: block;
}



/* Content/text section */
.testimonial-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  font-weight: 500;
}



/* Star Rating */
.rating {
  display: inline-flex;
  gap: 4px;
}

.star-icon {
  width: 17px;
  height: 17px;
  color: #DDE5E5;
  background-color: currentColor;
  mask: url('../img/icons/star.svg') center/contain no-repeat;
  -webkit-mask: url('../img/icons/star.svg') center/contain no-repeat;
  transition: 0.3s;
}

.star-icon.is-active {
  color: #F8B819;
}

.testimonial-scroll {
  animation: scrolly 30s linear infinite;
}

.testimonial-scroll:nth-child(even) {
  animation-direction: reverse;
}

@keyframes scrolly {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-100% - 24px));
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper {
    max-height: 550px;
  }

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

  .testimonial-scroll:nth-child(n+2) {
    display: none;
  }
}

.our-technology {
  position: relative;
  background: linear-gradient(#01264D 0%, #013874 100%);
  height: 820px;
  overflow: hidden;
}

.our-technology .sec-title,
.our-technology p {
  color: var(--color-common-white);
}

.our-technology p {
  opacity: .8;
}

.circle-gradient {
  max-width: 1230px;
  position: absolute;
  height: 1230px;
  width: 100%;
  left: 50%;
  transform: translate(-50%);
  top: -68%;
  border-radius: 50%;
  background: #025EC1;
  background: radial-gradient(circle, rgba(2, 94, 193, 0) 50%, rgba(2, 94, 193, 1) 100%);
  border: 2px solid rgb(240, 246, 252, .1);
  z-index: -2;
}

.our-technology::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 50%;
  /* background: linear-gradient( #01264D 100%, #01264d00 0%); */
  background: linear-gradient(to bottom, #01264D 20%, transparent);
  z-index: 2;
}

.our-technology .sec-head {
  position: relative;
  z-index: 2;
}

.circle-gradient li {
  position: absolute;
}

.circle-gradient li:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.circle-gradient li:nth-child(2) {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.circle-gradient li:nth-child(3) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.circle-gradient li:nth-child(4) {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.circle-gradient li:nth-child(5) {
  top: 10%;
  right: 5%;
}

.circle-gradient li:nth-child(6) {
  bottom: 10%;
  left: 5%;
}

.circle-gradient li:nth-child(7) {
  top: 10%;
  left: 5%;
}

.circle-gradient li:nth-child(8) {
  bottom: 10%;
  right: 5%;
}

.circle-gradient li:nth-child(9) {
  top: 25%;
  left: 10%;
}

.circle-gradient li:nth-child(10) {
  top: 25%;
  right: 10%;
}

.circle-gradient li:nth-child(11) {
  bottom: 25%;
  left: 10%;
}

.circle-gradient li:nth-child(12) {
  bottom: 25%;
  right: 10%;
}

/* ==========================================================================
   Hamburger Menu Theme Enhancements (Light Theme)
   ========================================================================== */
.hamburger-area {
  background: #ffffff !important;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.hamburger_bg {
  display: none;
}

.hamburger_wrapper::before {
  background: var(--blue-color) !important;
  opacity: 0.05;
  filter: blur(60px);
}

.hamburger-title {
  font-family: var(--ff-heading);
  font-weight: 800;
  color: var(--blue-color) !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 25px;
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.hamburger-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, var(--blue-color), transparent);
  opacity: 0.2;
}

.hamburger_menu ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hamburger_menu ul li a {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color) !important;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.hamburger_menu ul li a:hover {
  color: var(--blue-color) !important;
  transform: translateX(8px);
}

.hamburger-infos .contact-info .contact-item {
  margin-bottom: 20px;
  flex-direction: column;
}

.hamburger-infos .contact-info .contact-item .subtitle {
  color: var(--blue-color) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

.hamburger-infos .contact-info .contact-item .contact-link {
  color: var(--text-color) !important;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.hamburger-socials .social-links.style-2 ul {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.hamburger-socials .social-links.style-2 ul li a {
  width: 45px;
  height: 45px;
  background-color: var(--light-color);
  border: 1px solid rgba(2, 94, 193, 0.1);
  color: var(--blue-color) !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-socials .social-links.style-2 ul li a:hover {
  background-color: var(--blue-color);
  color: #ffffff !important;
  border-color: var(--blue-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(2, 94, 193, 0.2);
}

.hamburger_close_btn {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--blue-color);
  border: none;
  cursor: pointer;
}

.hamburger_close_btn:hover {
  background: #ED2E27 !important;
  color: white !important;
  transform: rotate(90deg);
}


/* inner-banner */
.inner-page-stvya .header {
  position: relative;
}




/* Inner page banner Style */
.banner-sec.inner-banner {

  background: linear-gradient(90deg, #f4f9f8 45%, rgba(244, 249, 248, 0.2) 70%, rgba(244, 249, 248, 0) 100%), url("../img/stavya-banner-website.png") no-repeat center right;
  /*background-size: contain;*/
  position: relative;
  overflow: hidden;
}

.banner-sec.inner-banner::before,
.banner-sec.inner-banner::after {
  display: none;
}

.banner-sec.inner-banner .banner-content {
  text-align: left;
  max-width: 650px;
}

.inn-banner-subtitle {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

/* Breadcrumb Styles */
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 10px 15px;
  padding: 0;
  list-style: none;
}

.breadcrumb-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-list li a {
  color: var(--text-color);
  transition: var(--transition);
}

.breadcrumb-list li a:hover {
  color: var(--blue-color);
}

.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  font-size: 12px;
  color: var(--primary-color);
  opacity: 0.5;
}

.breadcrumb-list li:last-child {

  color: var(--blue-color);
  background: #025ec133;
  border-radius: 40px;
  padding: 1px 10px;
}

.banner-content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.64;
}

.banner-content .primary-btn {
  margin-top: 30px;
}



/*====================================================
================ About Us Section ====================
====================================================*/


.main-about-img {
  position: relative;
}

.main-about-img .img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.main-about-img .img>img {
  min-height: 350px;
  object-fit: cover;
}

.top-attach {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.about_reviews {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 0 25px 50px;
}

.about_reviews::before,
.about_reviews::after {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 0px;
  left: -19px;
  width: 25px;
  height: 10px;
  box-shadow: 10px 0 0 0 var(--heading-color);
  border-top-right-radius: 10px;
}

.about_reviews::after {
  top: auto;
  left: auto;
  bottom: -9px;
  right: 0;
}

.about_reviews .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  top: -1px;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
  z-index: -1;
  mask-image: url(../img/shapes/h3-about-shape.svg);
  mask-position: bottom left;
  mask-repeat: no-repeat;
}

.about_reviews ul {
  display: inline-flex;
  list-style: none;
  align-items: center;
}

.about_reviews ul li:first-child {
  margin-inline-start: 0;
}

.about_reviews ul li {
  display: inline-flex;
  line-height: 1;
  margin-inline-start: -22px;
}

.about_reviews ul li img {
  width: 50px;
  height: 50px;
  background-color: var(--color-common-white);
  padding: 2px;
  border-radius: 50%;
}

.about_reviews ul li span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--blue-color);
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.about_reviews .text {
  display: inline-flex;
  max-width: 196px;
}




.cms-con ul li i,
.cms-con ul li svg {
  display: inline-flex;
  font-size: 20px;
  color: var(--blue-color);
  line-height: 1;
  margin-top: 4px;
}

.cms-con ul li {
  display: flex;
  gap: 9px;
  align-items: start;
  font-weight: var(--fw-medium);
  margin-bottom: 12px;
}

.poits-circle {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.circle-text-wrap {
  background: url(../img/skull.png) center center/cover no-repeat;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 5;
  margin: 0 !important;
}

.circle-text-wrap:hover a {
  transform: translate(-50%, -50%) rotate(0deg);
}

.circle-text {
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("../img/about-circle-text.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  -webkit-animation: textRotate 20s infinite linear;
  animation: textRotate 20s infinite linear;
  filter: brightness(0) invert(1);
}

.circle-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 6;
  color: var(--color-common-white);
  font-size: 32px;
  width: 100%;
  height: 100%;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}



/* cards */
.cards-wrapped {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.h3_countup {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--color-common-white);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 250px;
  transition: var(--transition);
}



.h3_countup .inline-content {
  margin-bottom: auto;
  color: var(--blue-color);
  font-size: 40px;
  font-weight: var(--fw-bold);
  line-height: 1;
}

.h3_countup .count-title {
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.h3_countup .count-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

.main-about-content,
.main-about-section .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.main-about-content {
  gap: 10px;
}

.ecommerce-details-sec .featured-blog-item .blog-thumb {
  height: 360px !important;
}

.ecommerce-details-sec .blog-item .title {
  font-size: 22px !important;
  text-align: center;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #000000, transparent);
  color: var(--color-common-white);
  padding: 10px 10px 20px 10px;
  margin: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  z-index: 1;
}