/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME CSS
	-----------------
		1.1 Theme Default
		1.2 Common Classes
		1.3 Spacing Classes
	-----------------
    02. COMPONENTS CSS
	-----------------
		2.1 Back to top
		2.2 Buttons
		2.3 Animations
		2.4 Preloader
		2.5 Background
		2.6 Nice Select
		2.7 Breadcrumb
		2.8 Accordion
		2.9 Section Title
		2.10 Accordion
		2.11 Search
		2.12 Magic Cursor
	-----------------
    03. HEADER CSS
	-----------------
		3.1 Header Style
    ---------------------------------
	04. MENU CSS
	---------------------------------
		4.1 Main Menu
		4.2 Mobile Menu
		4.3 offcanvas Menu
	---------------------------------
	05. BLOG CSS
	---------------------------------
		5.1 Sidebar css
		5.2 Blog css
		5.3 Blog Details css
	---------------------------------
	06. FOOTER CSS
	---------------------------------
		6.1 Footer Style 1
	---------------------------------
	07. PAGES CSS
	---------------------------------
	7.1 Banner
	7.2 Hero
	7.3 About Us
	7.4 Service
	7.5 Portfolio
	7.6 Team
	7.7 Award
	7.8 Testimonial
	7.9 FAQ
	7.10 Blog
	8.1 Client
	8.2 Marquee
	8.3 Service Details
	8.4 Team Details
	8.5 Portfolio Details
	8.6 Contact
	8.7 Work Process
	8.8 Why Choose Us
	8.9 Pricing
	8.10 Video

**********************************************/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

@keyframes bannerAnimationTwo {
  0% {
    transform: translate(0px, 0px);
  }

  20% {
    transform: translate(20px, -5px);
  }

  40% {
    transform: translate(50px, 20px);
  }

  60% {
    transform: translate(20px, 50px);
  }

  80% {
    transform: translate(-20px, 30px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.back-to-top-wrapper,
a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* transform */
html,
body {
  overflow-x: hidden;
}
:root {
  /**
  @font family declaration
  */
  --si-ff-body: "Roboto", sans-serif;
  --si-ff-heading: "Roboto", sans-serif;
  --si-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @font weight scale
  */
  --si-fw-regular: 400;
  --si-fw-medium: 300;
  --si-fw-semibold: 600;
  --si-fw-bold: 700;
  /**
  @color declaration
  */
  --si-common-white: #ffffff;
  --si-common-black: #121212;
  --si-common-black-2: #1e1e1e;
  --si-common-black-3: #272727;
  --si-common-text-body: #554d4d;
  --si-common-gray: #a3a1a1;
  --si-common-gray-2: #878c8f;
  --si-common-gray-3: #e4e4e4;
  --si-common-gray-4: #c4c8ca;
  --si-common-surface: #f9f9f9;
  --si-theme-primary: #f57e20;
  --si-border-1: rgba(18, 18, 18, 0.2);
  --si-border-2: rgba(18, 18, 18, 0.12);
  --si-border-3: rgba(18, 18, 18, 0.1);
  --si-border-4: rgba(18, 18, 18, 0.5);
  --si-border-5: rgba(18, 18, 18, 0.28);
  --si-border-6: rgba(255, 255, 255, 0.1);
  --si-border-7: #d9d9d9;
  --si-border-8: rgba(255, 255, 255, 0.5);
  --si-border-9: rgba(255, 255, 255, 0.2);
  --si-border-10: #f3eef5;
  /**
  @font size scale — responsive title/content hierarchy
  */
  --htech-fs-body: clamp(15px, 0.35vw + 14px, 17px);
  --htech-fs-content: clamp(14px, 0.3vw + 13px, 16px);
  --htech-fs-content-sm: clamp(13px, 0.25vw + 12px, 15px);
  --htech-fs-lead: clamp(15px, 0.45vw + 13px, 18px);
  --htech-fs-h6: clamp(15px, 0.45vw + 13px, 17px);
  --htech-fs-h5: clamp(16px, 0.65vw + 14px, 19px);
  --htech-fs-h4: clamp(18px, 0.85vw + 15px, 22px);
  --htech-fs-h3: clamp(20px, 1.2vw + 16px, 28px);
  --htech-fs-h2-section: clamp(1.375rem, 2.5vw + 0.75rem, 2.5rem);
  --htech-fs-h2-page: clamp(1.5rem, 3vw + 0.5rem, 2.75rem);
  --htech-fs-card-title: clamp(16px, 1vw + 14px, 20px);
  --htech-fs-card-desc: clamp(13px, 0.3vw + 12px, 15px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

html:has(#smooth-wrapper) {
  scroll-behavior: auto;
}

.si-about-section {
  overflow: hidden;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1348px;
  }

  .container-1650 {
    max-width: 1650px;
  }

  .container-1900 {
    max-width: 1905px;
  }

  .container-1632 {
    max-width: 1632px;
  }

  .container-1737 {
    max-width: 1737px;
  }
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-size: var(--htech-fs-body);
  line-height: 1.6;
  font-weight: var(--si-fw-regular);
  color: var(--si-common-text-body);
  font-family: var(--si-ff-body);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  font-weight: var(--si-fw-semibold);
  line-height: 2.5;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: var(--si-common-black);
  font-family: var(--si-ff-heading);
}

h1,
h2 {
  font-weight: var(--si-fw-bold);
}

h1 {
  font-size: 160px;
  line-height: 175px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 120px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 120px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 90px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 50px;
    line-height: 1.2;
  }
}

h2 {
  font-size: 65px;
  line-height: 85px;
  letter-spacing: -0.32px;
  font-weight: 500;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  h2 {
    font-size: 60px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h2 {
    font-size: 46px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 38px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 35px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 25px;
    line-height: 1.2;
  }
}

h3 {
  font-size: var(--htech-fs-h3);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

h4 {
  font-size: var(--htech-fs-h4);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

h5 {
  font-size: var(--htech-fs-h5);
  line-height: 1.4;
}

h6 {
  font-size: var(--htech-fs-h6);
  line-height: 1.4;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-weight: var(--si-fw-regular);
  font-size: var(--htech-fs-content);
  line-height: 1.7;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
  font-family: var(--si-ff-body);
  color: var(--si-common-text-body);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea {
  outline: none;
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-size: 16px;
  padding-left: 26px;
  padding-right: 26px;
  border-radius: 0px;
  background: rgb(246, 246, 249);
  color: var(--si-common-black);
  border-top: none;
  border-left: none;
  border-right: none;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--si-common-black);
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--si-common-black);
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--si-common-black);
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: var(--si-common-black);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
  /* MODERN BROWSER */
  color: var(--si-common-black);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
textarea:focus {
  border-color: var(--si-common-black);
  outline: none;
}

input[type="text"]:focus::placeholder,
input[type="email"]:focus::placeholder,
input[type="tel"]:focus::placeholder,
input[type="number"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="url"]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

input[type="color"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

select:focus {
  outline: 0;
  box-shadow: none;
}

*::-moz-selection {
  background: var(--si-common-black);
  color: var(--si-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--si-common-black);
  color: var(--si-common-white);
  text-shadow: none;
}

::selection {
  background: var(--si-common-black);
  color: var(--si-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--si-common-black);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--si-common-black);
  font-size: 14px;
  opacity: 1;
}

.si_img_reveal {
  visibility: hidden;
  overflow: hidden;
}

/*---------------------------------
    1.0 Common Classes
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.z-index-1 {
  position: relative;
  z-index: 1;
}

.z-index-2 {
  position: relative;
  z-index: 2;
}

.z-index-3 {
  position: relative;
  z-index: 3;
}

.z-index-4 {
  position: relative;
  z-index: 4;
}

.z-index-5 {
  position: relative;
  z-index: 5;
}

.z-index-6 {
  position: relative;
  z-index: 6;
}

.z-index-7 {
  position: relative;
  z-index: 7;
}

.z-index-8 {
  position: relative;
  z-index: 8;
}

.z-index-9 {
  position: relative;
  z-index: 9;
}

.z-index-10 {
  position: relative;
  z-index: 10;
}

.gx-7 {
  --bs-gutter-x: 7px;
}

.gx-10 {
  --bs-gutter-x: 10px;
}

.gx-12 {
  --bs-gutter-x: 12px;
}

.gx-15 {
  --bs-gutter-x: 15px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gx-24 {
  --bs-gutter-x: 24px;
}

.gx-30 {
  --bs-gutter-x: 30px;
}

.gx-40 {
  --bs-gutter-x: 40px;
}

.gx-45 {
  --bs-gutter-x: 45px;
}

.gx-50 {
  --bs-gutter-x: 50px;
}

.gx-55 {
  --bs-gutter-x: 55px;
}

.gx-60 {
  --bs-gutter-x: 60px;
}

.gx-70 {
  --bs-gutter-x: 70px;
}

.gx-80 {
  --bs-gutter-x: 80px;
}

.gx-90 {
  --bs-gutter-x: 90px;
}

.gx-100 {
  --bs-gutter-x: 100px;
}

.gx-135 {
  --bs-gutter-x: 135px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gx-135 {
    --bs-gutter-x: 30px;
  }
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-uppercase {
  text-transform: uppercase;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.underline-black:hover {
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size:
    0 2px,
    100% 2px;
  background-position:
    100% 100%,
    0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease-out 0.3s;
  -moz-transition: all 0.4s ease-out 0.3s;
  -ms-transition: all 0.4s ease-out 0.3s;
  -o-transition: all 0.4s ease-out 0.3s;
  transition: all 0.4s ease-out 0.3s;
}

.underline-black {
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size:
    0 1px,
    0 1px;
  background-position:
    100% 100%,
    0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease-out 0.3s;
  -moz-transition: all 0.4s ease-out 0.3s;
  -ms-transition: all 0.4s ease-out 0.3s;
  -o-transition: all 0.4s ease-out 0.3s;
  transition: all 0.4s ease-out 0.3s;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*----------------------------------------*/
/*  1.1 Spacing
/*----------------------------------------*/
.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-22 {
  margin-bottom: 22px;
}

.mb-23 {
  margin-bottom: 23px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .mb-45 {
    margin-bottom: 30px;
  }
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.ml-223 {
  margin-left: 223px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

@media (max-width: 1399px) {
  .pt-110 {
    padding-top: 80px;
  }
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

@media (max-width: 1399px) {
  .pt-130 {
    padding-top: 80px;
  }
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

@media (max-width: 1399px) {
  .pt-150 {
    padding-top: 80px;
  }
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-200 {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .pt-200 {
    padding-top: 70px;
  }
}

.pt-270 {
  padding-top: 270px;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

@media (max-width: 1399px) {
  .pb-130 {
    padding-bottom: 80px;
  }
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

@media (max-width: 1399px) {
  .pb-150 {
    padding-bottom: 80px;
  }
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

@media (max-width: 1399px) {
  .pb-190 {
    padding-bottom: 80px;
  }
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

/*----------------------------------------*/
/*  1.4 Back to top
/*----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

body.offcanvas-open .back-to-top-wrapper,
.si-offcanvas-area.opened ~ .back-to-top-wrapper,
.body-overlay.opened ~ .back-to-top-wrapper {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

@media (max-width: 767px) {
  .back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
}

.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  color: var(--si-common-black);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: var(--si-common-white);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
}

.back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

/*----------------------------------------*/
/*  1.6 Buttons
/*----------------------------------------*/
.si-circle-btn {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--si-border-4);
  width: 200px;
  height: 200px;
  place-content: center;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: all 0.9s ease-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-circle-btn {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .si-circle-btn {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
  }
}

.si-circle-btn:hover {
  border: 1px solid transparent;
}

.si-circle-btn-title {
  font-size: 20px;
  color: var(--si-common-black);
  padding-top: 16px;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-circle-btn-title {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .si-circle-btn-title {
    font-size: 17px;
  }
}

.si-circle-btn-dot {
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 0px;
  height: 0px;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  line-height: 20px;
  border-radius: 50%;
  background-color: var(--si-theme-primary);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  z-index: -1;
}

.si-circle-btn:hover .si-circle-btn-dot {
  width: 420px;
  height: 420px;
}

.si-btn-link {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 10px 0 0;
}

.si-btn-link .btn-text {
  overflow: hidden;
}

.si-btn-link .btn-text span {
  display: -webkit-box;
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: var(--si-common-gray-2);
  text-decoration: underline;
}

.si-btn-link:hover .btn-text span {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.si-btn-link .btn-icon img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.si-btn-link:hover .btn-icon img {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.link-effect {
  position: relative;
  overflow: hidden;
  display: block;
  height: 17px;
  line-height: normal;
}

.link-effect .effect-1 {
  display: block;
  height: 100%;
  position: relative;
  top: 0%;
  transition: 0.3s;
}

.link-effect:hover .effect-1 {
  top: -100%;
}

.si-client-wrap li a .link-effect {
  height: 120px;
}

@media (max-width: 767px) {
  .si-client-wrap li a .link-effect {
    height: 88px;
  }
}

.si__contact__btn a,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  max-width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.35vw + 0.65rem, 1rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--si-common-white);
  background: #f57e20;
  border: 1px solid #f57e20;
  border-radius: 4px;
  padding: 0.85em 1.75em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.si__contact__btn a:hover,
.submit-btn:hover {
  background: #f47615;
  border-color: #f47615;
  color: var(--si-common-white);
}

.si-btn-text {
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  display: inline;
  transition: none;
}

.si-btn-icon {
  background: transparent;
  color: var(--si-common-white);
  padding: 0;
  border-radius: 0;
  font-size: 1em;
  font-weight: inherit;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.si__contact__btn a:hover .si-btn-text,
.submit-btn:hover .si-btn-text {
  background: transparent;
  color: inherit;
}

.si__contact__btn a:hover .si-btn-icon,
.submit-btn:hover .si-btn-icon {
  background: transparent;
  color: var(--si-common-white);
  transform: translateX(4px);
}

.si__location__card .si__contact__btn a {
  font-size: clamp(0.65rem, 0.2vw + 0.55rem, 0.8125rem);
  padding: 0.7em 1.15em;
}

.si__blog__sidebar__post-btn .si__contact__btn a {
  font-size: clamp(0.7rem, 0.25vw + 0.6rem, 0.875rem);
  padding: 0.75em 1.35em;
}

@media (max-width: 767px) {
  .si__blog__sidebar__post-btn .si__contact__btn a,
  .si__location__card .si__contact__btn a {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 479px) {
  .si__contact__btn a,
  .submit-btn {
    max-width: 100%;
  }
}

/*----------------------------------------*/
/*  1.1 Animations
/*----------------------------------------*/
.rotate2 {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: rotate2 10s infinite linear;
  animation: rotate2 10s infinite linear;
}

@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes animationglob {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes lqdItiImgOut {
  0% {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(100%) scale(1.15);
  }
}

@keyframes hero-circle-2 {
  0% {
    -webkit-transform: translateX(1000px);
    -moz-transform: translateX(1000px);
    -ms-transform: translateX(1000px);
    -o-transform: translateX(1000px);
    transform: translateX(1000px);
  }

  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes hero-circle-3 {
  0% {
    -webkit-transform: translateX(500px);
    -moz-transform: translateX(500px);
    -ms-transform: translateX(500px);
    -o-transform: translateX(500px);
    transform: translateX(500px);
  }

  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes move1 {
  0% {
    bottom: -300px;
    left: -300px;
  }

  30% {
    bottom: 100px;
    left: 300px;
  }

  60% {
    bottom: 200px;
    left: 600px;
  }

  100% {
    bottom: -300px;
    left: 1200px;
  }
}

@keyframes move1-reverse {
  0% {
    bottom: -150px;
    left: 1400px;
  }

  40% {
    bottom: 50px;
    left: 600px;
  }

  70% {
    bottom: 200px;
    left: 300px;
  }

  100% {
    bottom: -150px;
    left: -150px;
  }
}

@keyframes animate-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  40% {
    box-shadow:
      0 0 0 50px rgba(255, 109, 74, 0),
      0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  80% {
    box-shadow:
      0 0 0 50px rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
  }
}

@keyframes animate-pulse-2 {
  0% {
    box-shadow:
      0 0 0 0 rgba(255, 246, 105, 0.1),
      0 0 0 0 rgba(255, 246, 105, 0.1);
  }

  40% {
    box-shadow:
      0 0 0 50px rgba(255, 109, 74, 0),
      0 0 0 0 rgba(255, 246, 105, 0.1);
  }

  80% {
    box-shadow:
      0 0 0 50px rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
  }
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

@keyframes marquee-horizontal {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes video-border {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@-moz-keyframes video-border {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@-ms-keyframes video-border {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@keyframes video-border {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@keyframes scroll-up-down {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes scroll1 {
  0% {
    top: 0px;
  }

  100% {
    top: 100%;
  }
}

@keyframes scroll2 {
  0% {
    top: 0px;
  }

  100% {
    top: 100%;
  }
}

@keyframes transform {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.8;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.si-zoom-in-out {
  -webkit-animation: si_zoom_in_out 7s infinite linear;
  -moz-animation: si_zoom_in_out 7s infinite linear;
  -ms-animation: si_zoom_in_out 7s infinite linear;
  -o-animation: si_zoom_in_out 7s infinite linear;
  animation: si_zoom_in_out 7s infinite linear;
}

@-webkit-keyframes si_zoom_in_out {
  0% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }

  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-moz-keyframes si_zoom_in_out {
  0% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }

  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-ms-keyframes si_zoom_in_out {
  0% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }

  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes si_zoom_in_out {
  0% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }

  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes scroll_anim {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes loadingAnimation {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes roteted {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes bar_anim {
  0%,
  100% {
    -webkit-clip-path: inset(-2px 0);
    clip-path: inset(-2px 0);
  }

  42% {
    -webkit-clip-path: inset(-2px 0 -2px 100%);
    clip-path: inset(-2px 0 -2px 100%);
  }

  43% {
    -webkit-clip-path: inset(-2px 100% -2px 0);
    clip-path: inset(-2px 100% -2px 0);
  }
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation: fadeInUp 7s infinite linear;
}

@-webkit-keyframes sishake {
  10% {
    transform: translateY(-10px);
  }

  50% {
    transform: skew(15deg);
  }

  80% {
    transform: rotate(10deg);
  }

  100% {
    transform: translate(0);
  }
}

@-moz-keyframes sishake {
  10% {
    transform: translateY(-10px);
  }

  50% {
    transform: skew(15deg);
  }

  80% {
    transform: rotate(10deg);
  }

  100% {
    transform: translate(0);
  }
}

@-ms-keyframes sishake {
  10% {
    transform: translateY(-10px);
  }

  50% {
    transform: skew(15deg);
  }

  80% {
    transform: rotate(10deg);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes sishake {
  10% {
    transform: translateY(-10px);
  }

  50% {
    transform: skew(15deg);
  }

  80% {
    transform: rotate(10deg);
  }

  100% {
    transform: translate(0);
  }
}

/*----------------------------------------*/
/*  1.9 Preloader
/*----------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader {
  width: 300px;
  height: 300px;
  background: url("../img/loader.gif") center center / contain no-repeat;
}

@media (max-width: 991px) {
  .preloader {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 767px) {
  .preloader {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 575px) {
  .preloader {
    width: 150px;
    height: 150px;
  }
}

/*--- end of preloader ---*/
/*----------------------------------------*/
/*  1.3 Background
/*----------------------------------------*/
.si-background {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.white-bg {
  background-color: var(--si-common-white);
}

.black-bg {
  background-color: var(--si-common-black);
}

.surface-bg {
  background-color: var(--si-common-surface);
}

[data-bg-color="footer-bg-grey"] {
  background-color: var(--si-footer-grey-1);
}

[data-bg-color="footer-bg-white"] {
  background-color: var(--si-common-white);
}

/*----------------------------------------*/
/*  1.8 Nice Select
/*----------------------------------------*/
.custom-select {
  position: relative;
  width: 200px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.custom-select .selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #fff;
}

.custom-select .selected.open .arrow {
  transform: rotate(-135deg);
}

.custom-select .selected.open + .options {
  max-height: 500px;
  opacity: 1;
}

.custom-select .selected .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid #333;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: 100;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}

.custom-select .options li {
  padding: 10px;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease;
}

.custom-select .options li:hover {
  background: #f0f0f0;
}

/*----------------------------------------*/
/*  1.5 Breadcrumb
/*----------------------------------------*/
.si__breadcumb__area {
  position: relative;
  padding-top: 263px;
  padding-bottom: 115px;
}

.si__breadcumb__area::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Poori image pr barabar ka dark effect (0.55 opacity) */
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.si__breadcumb__text {
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .si__breadcumb__text {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__breadcumb__area {
    padding-top: 190px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__breadcumb__area {
    padding-top: 190px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si__breadcumb__area {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .si__breadcumb__area {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

.si__breadcumb__text h2 {
  font-family: var(--si-ff-body);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 4.375rem);
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}

.si__breadcumb__text h2 .si-banner-accent {
  color: #f57e20;
}

.si__breadcumb__text > span {
  font-weight: var(--si-fw-medium);
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 1.125rem);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(7.5px);
  color: #fff;
  padding: 18px 25px 16px 25px;
  border-radius: 10px;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si__breadcumb__text > span {
    padding: 12px 18px 10px 18px;
  }
}

@media (max-width: 767px) {
  .si__breadcumb__text > span {
    padding: 10px 14px 8px 14px;
  }
}

/*----------------------------------------*/
/*  1.0 Accordion
/*----------------------------------------*/
.si-faq-accordion-wrap .accordion-items {
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
  background: var(--si-common-white);
}

@media (max-width: 767px) {
  .si-faq-accordion-wrap .accordion-items {
    padding-bottom: 0;
  }
}

.si-faq-accordion-wrap .accordion-items:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.si-faq-accordion-wrap .si-faq-number {
  font-weight: 600;
  font-size: 100px;
  line-height: 136px;
  color: #e7e8e9;
  letter-spacing: -0.05em;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-faq-accordion-wrap .si-faq-number {
    font-size: 50px;
  }
}

.si-faq-accordion-wrap .accordion-header {
  margin-bottom: 0;
  padding-left: 40px;
}

@media (max-width: 767px) {
  .si-faq-accordion-wrap .accordion-header {
    padding-right: 70px;
    padding-left: 20px;
  }
}

.si-faq-accordion-wrap .accordion-header .accordion-buttons {
  padding-top: 20px;
  padding-bottom: 0px;
  font-weight: 600;
  font-size: 30px;
  line-height: 41px;
  width: 100%;
  text-align: left;
  letter-spacing: -0.02em;
  color: var(--si-common-black);
  display: flex;
  align-items: center;
  gap: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-faq-accordion-wrap .accordion-header .accordion-buttons {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .si-faq-accordion-wrap .accordion-header .accordion-buttons {
    font-size: 20px;
    line-height: 32px;
    padding-top: 0;
  }
}

.si-faq-accordion-wrap
  .accordion-header
  .accordion-buttons:not(.collapsed)
  .accordion-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.si-faq-accordion-wrap .accordion-header .accordion-buttons .accordion-icon {
  position: absolute;
  top: 92px;
  right: 23px;
}

@media (max-width: 767px) {
  .si-faq-accordion-wrap .accordion-header .accordion-buttons .accordion-icon {
    top: 67px;
  }
}

.si-faq-accordion-wrap
  .accordion-header
  .accordion-buttons
  .accordion-icon::before {
  position: absolute;
  content: "";
  width: 2.5px;
  height: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--si-common-black);
  border-radius: 2px;
  transition: 0.4s;
}

.si-faq-accordion-wrap
  .accordion-header
  .accordion-buttons
  .accordion-icon::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 2.5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--si-common-black);
  border-radius: 2px;
}

.si-faq-accordion-wrap .accordion-header span {
  margin-right: 20px;
}

@media (max-width: 767px) {
  .si-faq-accordion-wrap .accordion-header span {
    margin-right: 10px;
  }
}

.si-faq-accordion-wrap .accordion-body {
  padding-right: 40px;
  padding-left: 40px;
  border-top: 1px solid var(--si-border-7);
  margin-top: 10px;
  padding-top: 35px;
  padding-bottom: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-faq-accordion-wrap .accordion-body {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-faq-accordion-wrap .accordion-body {
    padding-right: 30px;
  }
}

.si-faq-accordion-wrap .accordion-body p {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: var(--si-text-body);
  margin-bottom: 0;
  padding-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-faq-accordion-wrap .accordion-body p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .si-faq-accordion-wrap .accordion-body p {
    font-size: 18px;
  }
}

.si-faq-box-2 .accordion-buttons .accordion-icon {
  top: 37px !important;
  right: -12px !important;
}

@media (max-width: 767px) {
  .si-faq-box-2 .accordion-buttons .accordion-icon {
    right: 0px !important;
    top: 16px !important;
  }
}

.si-faq-box-2 .si-faq-accordion-wrap .accordion-header {
  margin-bottom: 0;
  padding-left: 0;
}

.si-faq-box-2 .si-faq-accordion-wrap .accordion-items {
  padding-bottom: 35px;
  margin-bottom: 15px;
  position: relative;
  background: var(--si-common-white);
  margin-right: 50px;
}

.si-faq-box-2 .si-faq-accordion-wrap .accordion-body {
  padding-right: 100px;
  padding-left: 0;
  border-top: none;
  margin-top: 10px;
  padding-top: 16px;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .si-faq-box-2 .si-faq-accordion-wrap .accordion-body {
    padding-right: 0;
  }
}

.si-faq-box-2 .si-faq-accordion-wrap .accordion-items:not(:last-child) {
  border-bottom: 1px solid var(--si-border-1);
}

/*----------------------------------------*/
/*  2.1 Section Title
/*----------------------------------------*/
.si-section-title {
  padding-bottom: 60px;
}

.si-section-title h2 {
  font-size: var(--htech-fs-h2-section) !important;
  line-height: 1.25;
}

.si-section-title h3 {
  font-size: var(--htech-fs-h2-page) !important;
  line-height: 1.25 !important;
}

.si-section-title p {
  font-size: var(--htech-fs-lead);
  line-height: 1.65;
  color: var(--si-common-gray-2);
  font-weight: var(--si-fw-regular);
  max-width: 720px;
}

.si-section-title.text-center p {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-section-title h2 {
    font-size: var(--htech-fs-h2-section) !important;
  }
}

@media (max-width: 767px) {
  .si-section-title h2 {
    font-size: var(--htech-fs-h2-section) !important;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .si-section-title h2 {
    font-size: var(--htech-fs-h2-section) !important;
  }
}

@media (max-width: 767px) {
  .si-section-title {
    padding-bottom: 30px;
  }
}

.si-section-title .space {
  margin-left: 353px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-section-title .space {
    margin-left: 150px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-section-title .space {
    margin-left: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-section-title .space {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .si-section-title .space {
    margin-left: 0px;
  }
}

.si-section-title.space2 {
  margin-left: 285px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-section-title.space2 {
    margin-left: 0;
  }
}

.si-section-title span {
  font-size: clamp(11px, 1.6vw, 14px);
  line-height: 1.35;
  font-weight: var(--si-fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--si-border-3);
  border-radius: 30px;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.si-section-title .htech-blog-hero__badge {
  font-size: clamp(11px, 1.6vw, 13px);
  line-height: 1.35;
  margin-bottom: 10px;
}

.si-section-title h2,
.si-section-title h3 {
  margin-top: 0;
  font-weight: var(--si-fw-bold);
}

.si-section-title-white span {
  color: #fff;
  border: 1px solid var(--si-border-6);
}

.si-section-title-white h2 {
  color: #fff;
}

/*----------------------------------------*/
/*  2.0 Search
/*----------------------------------------*/
.si-search-area {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  height: 300px;
  visibility: hidden;
  background: var(--si-common-white);
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  transition:
    all 0.5s ease-in-out 0s,
    visibility 0.5s ease-in-out;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.si-search-area::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.si-search-area.opened {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.si-search-area.search-black {
  background: rgb(38, 37, 40);
}

.si-search-area.search-black .si-search-content .search::before {
  background-color: var(--si-common-white);
}

.si-search-area.search-black .si-search-content input {
  border-color: #4f4f4f;
  background-color: transparent;
  color: var(--si-common-white);
}

.si-search-area.search-black
  .si-search-content
  input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--si-common-white);
}

.si-search-area.search-black .si-search-content input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--si-common-white);
}

.si-search-area.search-black .si-search-content input:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--si-common-white);
}

.si-search-area.search-black .si-search-content input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: var(--si-common-white);
}

.si-search-area.search-black .si-search-content input::placeholder {
  /* MODERN BROWSER */
  color: var(--si-common-white);
}

.si-search-area.search-black .si-search-content .si-search-icon {
  color: var(--si-common-white);
}

.si-search-area.search-black .si-search-close-btn {
  border-color: #4f4f4f;
  color: var(--si-common-white);
}

.si-search-wrapper {
  position: relative;
  display: flex;
  padding-top: 80px;
  justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-search-wrapper {
    padding-top: 115px;
  }
}

.si-search-close {
  position: absolute;
  top: 35px;
  right: 35px;
}

@media (max-width: 767px) {
  .si-search-close {
    right: 20px;
    top: 20px;
  }
}

.si-search-close-btn {
  position: relative;
  height: 50px;
  width: 50px;
  z-index: 2;
  line-height: 1;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: var(--si-common-black);
  border: 1px solid rgba(22, 22, 19, 0.1);
}

.si-search-close-btn svg {
  height: 12px;
  width: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.si-search-close-btn:hover svg {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.si-search-content .search {
  margin-bottom: 40px;
  position: relative;
}

.si-search-content .search:has(input:focus)::before {
  width: 100%;
}

.si-search-content .search::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  transition: 0.4s;
  background-color: var(--si-common-black);
}

.si-search-content input {
  height: 80px;
  border: none;
  font-size: 30px;
  font-weight: 400;
  padding: 0 60px 0 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #e6e8f0;
  color: var(--si-common-black);
  background: var(--si-common-white);
}

.si-search-content input:focus:hover {
  background: transparent;
}

.si-search-content input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 30px;
  font-weight: 400;
  color: var(--si-common-black);
}

.si-search-content input::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 30px;
  font-weight: 400;
  color: var(--si-common-black);
}

.si-search-content input:-moz-placeholder {
  /* Firefox 4-18 */
  font-size: 30px;
  font-weight: 400;
  color: var(--si-common-black);
}

.si-search-content input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-size: 30px;
  font-weight: 400;
  color: var(--si-common-black);
}

.si-search-content input::placeholder {
  /* MODERN BROWSER */
  font-size: 30px;
  font-weight: 400;
  color: var(--si-common-black);
}

.si-search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  line-height: 1;
  transform: translateY(-50%);
}

.si-header-search-title {
  font-size: 18px;
  font-weight: 500;
  margin-left: 13px;
}

/*----------------------------------------*/
/*  1.7 Magic Cursor
/*----------------------------------------*/
body.si-magic-cursor #magic-cursor {
  display: block;
}

#magic-cursor {
  position: absolute;
  display: none;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  top: 0;
  left: 0;
}

#ball {
  position: fixed;
  display: flex;
  align-items: center;
  pointer-events: none;
  border-radius: 50%;
  color: transparent;
  justify-content: center;
  mix-blend-mode: difference;
  background-color: var(--si-common-black);
}

.cursor-theme-bg #ball {
  background-color: var(--si-theme-primary) !important;
}

.cursor-theme-bg #ball .ball-view {
  color: var(--si-common-black);
}

.cursor-black-bg #ball .ball-view {
  color: var(--si-common-white);
}

/* Ball view 
============= */
#ball .ball-view {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  padding: 0 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  transform: scale(0);
  color: var(--si-common-black);
}

/* Ball drag 
============= */
#ball .ball-drag {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0 5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s;
  color: var(--si-common-black);
}

#ball .ball-drag::before,
#ball .ball-drag::after {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  font-size: 19px;
  height: 10px;
  line-height: 10px;
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  color: var(--si-common-white);
  font-family: "Font Awesome 6 Pro";
  -webkit-font-smoothing: antialiased;
}

#ball .ball-drag::before {
  content: "\f104";
  /* Font Awesome */
  left: 0;
  transform: translate3d(-30px, 0, 0);
  transition: all 0.25s;
}

#ball .ball-drag::after {
  content: "\f105";
  /* Font Awesome */
  right: 0;
  transform: translate3d(30px, 0, 0);
  transition: all 0.25s;
}

#ball.with-blur {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Ball close 
============== */
#ball.ball-close-enabled {
  opacity: 1 !important;
}

#ball .ball-close {
  position: absolute;
  padding: 0 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--si-common-black);
}

.si-magnetic-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HEADER CSS */
/*----------------------------------------*/
/*   3.1 Header Style
/*----------------------------------------*/
.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 55;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-header-ptb {
    padding: 10px 0;
  }
}

.si-header-menu > nav > ul > li {
  margin: 0 18px;
  list-style-type: none;
  display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-header-menu > nav > ul > li {
    margin: 0 15px;
  }
}

.si-header-menu > nav > ul > li > a {
  padding: 50px 0;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  color: var(--si-common-black);
}

.si-header-menu > nav > ul > li > a:hover {
  color: var(--si-theme-primary);
}

.si-header-white .si-header-menu > nav > ul > li > a:hover {
  color: var(--si-theme-primary);
}

.header-sticky .si-header-menu > nav > ul > li > a:hover,
.si-header-white.header-sticky .si-header-menu > nav > ul > li > a:hover {
  color: var(--si-theme-primary);
}

.si-header-menu > nav > ul > li.active > a,
.si-header-dropdown nav > ul > li.active > a,
.dropdown-white-bg nav > ul > li.active > a {
  color: var(--si-theme-primary) !important;
}

.si-header-lang a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
}

.si-header-lang a.active {
  color: var(--si-theme-primary);
}

.si-header-lang a:not(:first-child) {
  margin-left: 10px;
}

.si-header-lang a:hover {
  color: var(--si-theme-primary);
}

@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px) {
  .si-header-box {
    padding-right: 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-header-box {
    padding-right: 0px;
  }
}

/*----------------------------------------*/
/* Unified Logo Alignment (Navbar, Footer, Offcanvas)
/*----------------------------------------*/
.si-header-logo,
.si-footer-logo-2,
.si-offcanvas-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: left;
}

.si-header-logo a,
.si-footer-logo-2 a,
.si-offcanvas-logo a {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.si-header-logo img {
  max-width: inherit;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-header-logo {
    padding: 10px 0 !important;
  }
}

.si-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .si-header-right {
    justify-content: right;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .si-header-right {
    display: block;
    text-align: right;
  }
}

.si-header-bar button {
  color: var(--si-common-white);
  border: 1px solid var(--si-border-1);
  border-radius: 50px;
  width: 50px;
  height: 50px;
  place-content: center;
}

.si-header-bar button:hover span {
  animation: bar_anim 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-header-social {
    display: none !important;
  }
}

.si-header-social a {
  margin-right: 15px;
}

.si-header-white .si-header-menu > nav > ul > li > a {
  color: var(--si-common-white);
}

.si-header-white .si-header-dropdown nav ul li.has-dropdown::after {
  color: var(--si-common-white);
}

.si-header-white .si-header-search-title {
  color: var(--si-common-white);
}

.si-header-white .si-header-bar button {
  border: 1px solid var(--si-border-9);
}

.si-header-white.header-sticky {
  /* background: var(--si-common-black); */
  background-color: var(--si-common-white);
}

.si-header-white.header-sticky .si-header-menu > nav > ul > li > a {
  color: var(--si-common-black);
}

.si-header-white.header-sticky
  .si-header-dropdown
  nav
  ul
  li.has-dropdown::after {
  color: var(--si-common-black);
}

.si-header-white.header-sticky .si-header-bar button {
  color: var(--si-common-black);
  border: 1px solid var(--si-border-1);
}

/* Logo swap: normal vs sticky */
.logo-sticky {
  display: none;
}

.header-sticky .logo-normal {
  display: none;
}

.header-sticky .logo-sticky {
  display: inline-block;
}

/*----------------------------------------*/
/*  4.1 Main Menu
/*----------------------------------------*/
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 10;
  visibility: visible;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(19, 19, 22, 0.08);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}

.header-sticky .si-header-menu > nav > ul > li > a {
  padding: 30px 0;
}

.si-header-dropdown nav ul li {
  position: relative;
  list-style: none;
}

.si-header-dropdown nav ul li.p-static {
  position: static;
}

.si-header-dropdown nav ul li.has-dropdown::after {
  content: "\f107";
  font-size: 16px;
  font-weight: 400;
  margin-left: 2px;
  display: inline-block;
  color: var(--si-common-black);
  transition: all 0.3s 0s ease-out;
  font-family: var(--si-ff-fontawesome);
}

.si-header-dropdown nav ul li.has-dropdown:hover::after {
  transform: rotate(-180deg);
}

.si-header-dropdown nav ul li .si-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  z-index: 99;
  opacity: 0;
  padding: 12px 0;
  transition: 0.5s;
  text-align: start;
  visibility: hidden;
  border-radius: 14px;
  transform-origin: 0 0;
  transform: scale(1, 0);
  backdrop-filter: blur(40px);
  background: rgba(38, 37, 40, 0.9);
  box-shadow: 0 20px 30px -8px rgba(19, 19, 22, 0.1);
}

.si-header-dropdown nav ul li .si-submenu li {
  width: 100%;
  padding: 0 12px;
  border-radius: 8px;
}

.si-header-dropdown nav ul li .si-submenu li a {
  position: relative;
  border-radius: 8px;
  font-weight: var(--si-fw-regular);
  font-size: 16px;
  line-height: 1;
  color: #bfbfc0;
  padding: 12px 18px;
  display: inline-block;
  letter-spacing: -0.01em;
  text-align: start;
  width: 100%;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-header-dropdown nav ul li .si-submenu li a {
    font-size: 14px;
  }
}

.si-header-dropdown nav ul li .si-submenu li .si-submenu {
  top: 0;
  left: 100%;
}

.si-header-dropdown nav ul li .si-submenu li:hover > a {
  background-color: #2c2b2e;
  color: var(--si-common-white);
}

.si-header-dropdown nav ul li .si-submenu li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.si-header-dropdown nav ul li .si-submenu li.menu-item-has-children > a::after {
  content: "\f107";
  font-size: 16px;
  font-weight: 400;
  margin-left: 2px;
  color: #bfbfc0;
  display: inline-block;
  transform: rotate(-90deg);
  transition: all 0.3s 0s ease-out;
  font-family: var(--si-ff-fontawesome);
}

.si-header-dropdown
  nav
  ul
  li
  .si-submenu
  li.menu-item-has-children:hover
  a::after {
  transform: rotate(0deg);
  color: var(--si-common-white);
}

.si-header-dropdown nav ul li:hover > .si-submenu {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.si-header-dropdown nav ul li:hover > .si-megamenu-wrapper {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.2s;
  -webkit-transform: perspective(300px) rotateX(0deg);
  -moz-transform: perspective(300px) rotateX(0deg);
  -ms-transform: perspective(300px) rotateX(0deg);
  -o-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}

.dropdown-white-bg nav ul li .si-submenu {
  background: var(--si-common-white);
}

.dropdown-white-bg nav ul li .si-submenu li a {
  color: var(--si-common-black);
}

.dropdown-white-bg nav ul li .si-submenu li:hover > a {
  background-color: var(--si-theme-primary);
  color: var(--si-common-white);
}

.dropdown-white-bg nav ul li .si-submenu li.menu-item-has-children > a::after {
  color: #636368;
}

.dropdown-white-bg
  nav
  ul
  li
  .si-submenu
  li.menu-item-has-children:hover
  > a::after {
  color: var(--si-common-black);
}

/*----------------------------------------*/
/*  4.2 Mobile Menu
/*----------------------------------------*/
.si-offcanvas-menu {
  margin-bottom: 40px;
}

.si-offcanvas-menu ul {
  list-style: none;
}

.si-offcanvas-menu ul li {
  position: relative;
}

.si-offcanvas-menu ul li > a {
  padding: 10px 0;
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.si-offcanvas-menu ul li.has-dropdown > a {
  padding-right: 48px;
}

.si-offcanvas-menu ul li.active > a {
  color: var(--si-theme-primary);
}

.si-offcanvas-menu ul li.active > .si-menu-close i {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.si-offcanvas-menu ul li .submenu {
  display: none;
}

.si-offcanvas-menu ul li .submenu .submenu {
  margin-left: 30px;
}

.si-offcanvas-menu .si-megamenu-wrapper.megamenu-white-bg {
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
}

.si-offcanvas-menu .mega-menu {
  width: auto;
  opacity: 1;
  visibility: visible;
  transition: none;
  position: static;
  display: none;
  -webkit-transform: perspective(0) rotateX(0);
  -moz-transform: perspective(0) rotateX(0);
  -ms-transform: perspective(0) rotateX(0);
  -o-transform: perspective(0) rotateX(0);
  transform: perspective(0) rotateX(0);
}

.si-offcanvas-menu .si-megamenu-list ul li {
  padding: 0;
}

.si-offcanvas-menu .si-megamenu-list ul li a {
  padding: 8px 20px;
  font-size: 17px;
}

.si-offcanvas-menu .si-submenu li a {
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 17px;
}

.si-offcanvas-menu .si-submenu li a:hover {
  background-color: #f8f8fb;
  color: var(--si-common-black);
}

.si-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.si-menu-close i {
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 500;
  pointer-events: none;
}

.menu-item-has-children .si-menu-close {
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
}

/*----------------------------------------*/
/*  4.3 offcanvas Menu
/*----------------------------------------*/
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
  background: rgba(24, 24, 24, 0.4);
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

.si-offcanvas-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  z-index: 9999;
  padding: 40px 30px;
  padding-bottom: calc(30px + env(safe-area-inset-bottom));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  background: #fff;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
}

.si-offcanvas-main {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding-bottom: 24px;
}

@media (max-width: 767px) {
  .si-offcanvas-wrapper {
    width: 100%;
    padding: 24px 20px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

body.offcanvas-open {
  overflow: hidden;
  touch-action: none;
}

body.offcanvas-open .si-offcanvas-main {
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.si-offcanvas-wrapper .logo-2 {
  display: none;
}

.si-offcanvas-wrapper.offcanvas-black-bg {
  background: var(--si-common-black);
}

.si-offcanvas-wrapper.offcanvas-black-bg .logo-1 {
  display: none;
}

.si-offcanvas-wrapper.offcanvas-black-bg .logo-2 {
  display: block !important;
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-close-btn {
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-menu ul li > a {
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-menu ul li.active > a {
  color: var(--si-theme-primary);
}

.si-offcanvas-wrapper.offcanvas-black-bg
  .si-offcanvas-menu
  .si-submenu
  li
  a:hover {
  background-color: #2c2b2e;
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-menu-close i {
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg
  .si-megamenu-wrapper.megamenu-black-bg {
  backdrop-filter: initial;
  background: transparent;
  box-shadow: none;
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-title.sm {
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-contact ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-contact ul li a:hover {
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-contact ul li a::after {
  background-color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-social ul li a {
  color: var(--si-common-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-social ul li a:hover {
  color: var(--si-common-black);
  border-color: var(--si-common-white);
  background-color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-title {
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-content p {
  color: rgba(255, 255, 255, 0.8);
}

.si-offcanvas-area.opened .si-offcanvas-wrapper {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.si-offcanvas-top {
  flex-shrink: 0;
  margin-bottom: 32px;
}

.si-offcanvas-close-btn {
  color: black;
}

.si-offcanvas-close-btn:hover {
  opacity: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.si-offcanvas-content {
  margin-bottom: 45px;
}

.si-offcanvas-content p {
  font-size: 18px;
  font-weight: var(--si-fw-regular);
  color: var(--si-common-black);
}

.si-offcanvas-title {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.8px;
  font-weight: var(--si-fw-bold);
  margin-bottom: 15px;
  color: var(--si-common-black);
}

.si-offcanvas-title.sm {
  font-size: 20px;
  font-weight: var(--si-fw-semibold);
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--si-common-black);
}

.si-offcanvas-gallery {
  margin-bottom: 65px;
}

.si-offcanvas-gallery-img img {
  transition: 0.9s;
}

.si-offcanvas-gallery-img:hover img {
  transform: scale(1.2) rotate(-2deg);
}

.si-offcanvas-contact {
  margin-bottom: 36px;
}

.si-offcanvas-contact ul li {
  list-style: none;
}

.si-offcanvas-contact ul li:not(:last-child) {
  margin-bottom: 2px;
}

.si-offcanvas-contact ul li a {
  display: inline-block;
  color: var(--si-common-black);
  font-size: 16px;
  position: relative;
}

.si-offcanvas-contact ul li a::after {
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 0;
  height: 1px;
  content: "";
  transition: 0.4s;
  background-color: #1e1e1e;
}

.si-offcanvas-contact ul li a:hover {
  color: var(--si-common-black);
}

.si-offcanvas-contact ul li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.si-offcanvas-social ul {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.si-offcanvas-social ul li {
  list-style: none;
}

.si-offcanvas-social ul li:not(:last-child) {
  margin-right: 8px;
}

.si-offcanvas-social ul li a {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 40px;
  transition: all 0.3s;
  color: var(--si-common-black);
  border: 1px solid rgba(2, 11, 24, 0.1);
}

.si-offcanvas-social ul li a:hover {
  background-color: var(--si-theme-primary);
  border-color: var(--si-theme-primary);
  color: var(--si-common-white);
}

.si-offcanvas-social ul li a svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.si-offcanvas-tagline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--si-theme-primary);
  margin-bottom: 12px;
}

.si-offcanvas-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.si-offcanvas-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.si-offcanvas-contact-list li:not(:last-child) {
  margin-bottom: 14px !important;
}

.si-offcanvas-contact-list li a {
  flex: 1;
  line-height: 1.5;
  font-size: 15px;
}

.si-offcanvas-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--si-theme-primary);
  background: rgba(245, 126, 32, 0.12);
}

.si-offcanvas-cta {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.si-offcanvas-cta.si__contact__btn a {
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
}

.si-offcanvas-cta .si-offcanvas-btn,
.si-offcanvas-cta.si__contact__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  width: 100%;
  max-width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.35vw + 0.65rem, 1rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--si-common-white);
  background: #f57e20;
  border: 1px solid #f57e20;
  border-radius: 4px;
  padding: 0.85em 1.75em;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.si-offcanvas-cta .si-offcanvas-btn:hover {
  background: #f47615;
  border-color: #f47615;
  color: var(--si-common-white);
}

.si-offcanvas-cta .si-offcanvas-btn i {
  font-size: 1em;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.si-offcanvas-cta .si-offcanvas-btn:hover i {
  transform: translateX(4px);
  color: var(--si-common-white);
}

.si-offcanvas-social {
  margin-bottom: 8px;
  padding-bottom: calc(0px + env(safe-area-inset-bottom));
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-cta .si-offcanvas-btn {
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg
  .si-offcanvas-cta
  .si-offcanvas-btn:hover {
  background: #f47615;
  border-color: #f47615;
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-tagline {
  color: var(--si-theme-primary);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-contact-list li a {
  color: rgba(255, 255, 255, 0.85);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-contact-list li a:hover {
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-contact-icon {
  color: var(--si-theme-primary);
  background: rgba(245, 126, 32, 0.15);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-menu .si-submenu li a {
  color: rgba(255, 255, 255, 0.75);
}

.si-offcanvas-wrapper.offcanvas-black-bg
  .si-offcanvas-menu
  .si-submenu
  li
  a:hover {
  background-color: #2c2b2e;
  color: var(--si-common-white);
}

.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-social ul li a:hover {
  background-color: var(--si-theme-primary);
  border-color: var(--si-theme-primary);
  color: var(--si-common-white);
}

@media (max-width: 767px) {
  .si-offcanvas-top {
    margin-bottom: 40px;
  }

  .si-offcanvas-menu {
    margin-bottom: 40px;
  }

  .si-offcanvas-title {
    font-size: 32px;
  }

  .si-offcanvas-wrapper {
    padding: 36px 28px;
  }
}

.si__blog__details__area {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media only screen and (max-width: 991px) {
  .si__blog__details__area {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.si__blog__details__thumb {
  position: relative;
}

.si__blog__details__date {
  text-align: center;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--si-common-white);
  padding: 17px 14px 13px 14px;
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__details__date {
    position: inherit;
    margin-bottom: 15px;
  }
}

.si__blog__details__date h1 {
  font-size: 50px;
  line-height: 41px;
  color: var(--si-theme-primary);
}

.si__blog__details__date span {
  font-weight: 500;
  font-size: 18px;
}

.si__blog__details__date h3 {
  font-size: 40px;
  color: var(--si-theme-primary);
  font-weight: 700;
}

.si__blog__details__list ul {
  background: #f6f6f6;
  display: inline-block;
  padding: 15px 5px 19px 24px;
}

.si__blog__details__list ul li {
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  display: inline;
  margin-right: 22px;
}

.si__blog__details__list ul li img {
  margin-right: 5px;
}

.si__blog__details__list ul li a:hover {
  color: var(--si-theme-primary);
}

.si__blog__details__text {
  margin-top: 27px;
}

.si__blog__details__text h2 {
  font-size: clamp(1.25rem, 2vw + 0.75rem, 1.875rem);
  line-height: 1.35;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .si__blog__details__text h2 {
    font-size: clamp(1.15rem, 2.5vw + 0.5rem, 1.5rem);
  }
}

.si__blog__details__text p {
  margin-top: 14px;
  font-size: var(--htech-fs-content);
  line-height: 1.7;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__details__text p br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__details__text p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .si__blog__details__text p br {
    display: none;
  }
}

.si__blog__details__text h3 {
  font-size: clamp(1.125rem, 1.5vw + 0.75rem, 1.625rem);
  line-height: 1.35;
  margin-top: 29px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .si__blog__details__text h3 {
    font-size: clamp(1.05rem, 2vw + 0.5rem, 1.35rem);
  }
}

.si__blog__details__icon {
  text-align: center;
  background: #f6f6f6;
  border: 1px solid var(--si-border-2);
  padding: 42px 0 16px 0;
  margin-top: 37px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__details__icon {
    padding: 42px 11px 16px 11px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__details__icon {
    padding: 42px 11px 16px 11px;
  }
}

@media (max-width: 991px) {
  .si__blog__details__icon {
    padding: 42px 11px 16px 11px;
  }
}

.si__blog__details__icon p {
  margin-top: 18px;
  font-size: 20px;
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__details__icon p {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__details__icon p br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__details__icon p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .si__blog__details__icon p br {
    display: none;
  }
}

.si__blog__details__listtwo {
  margin-top: 44px;
}

.si__blog__details__listtwo h4 {
  font-size: var(--htech-fs-h4);
  line-height: 1.35;
  margin-bottom: 28px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .si__blog__details__listtwo h4 {
    font-size: var(--htech-fs-h5);
  }
}

.si__blog__details__listtwo ul li {
  font-size: var(--htech-fs-content);
  list-style: none;
  margin-top: 19px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__details__listtwo ul li {
    font-size: 18px;
  }
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__details__listtwo ul li {
    font-size: 18px;
  }
}

.si__blog__details__listtwo ul li img {
  margin-right: 5px;
}

.si__blog__details__img {
  position: relative;
  margin-top: 46px;
}

.si__blog__details__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--si-border-7);
  padding: 20px 0 19px 0;
  border-bottom: 1px solid var(--si-border-7);
  margin-top: 38px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__details__main {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .si__blog__details__main {
    display: block;
  }
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__details__main {
    display: block;
  }
}

.si__blog__details__tag h4 {
  margin-right: 19px;
}

.si__blog__details__word span a {
  font-weight: 500;
  color: #010141;
  background: transparent;
  border: 1px solid var(--si-border-2);
  padding: 11px 23px 10px 23px;
  margin-right: 5px;
  border-radius: 10px;
  transition: 0.5s;
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__details__word span a {
    display: block;
    margin-bottom: 13px;
  }
}

.si__blog__details__word span a:hover {
  background: var(--si-theme-primary);
  color: var(--si-common-white);
}

.si__blog__details__share span {
  color: #010141;
  font-weight: 500;
}

.si__blog__details__right {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .si__blog__details__right {
    margin-top: 15px;
  }
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__details__right {
    margin-top: 15px;
  }
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__details__share {
    margin-right: 10px;
  }
}

.si__blog__details__listthree ul li {
  list-style: none;
  color: #010141;
  display: inline;
  margin-left: 12px;
}

.si__blog__details__button a {
  font-size: 18px;
  font-weight: 600;
}

.si__blog__details__maintwo {
  margin-top: 44px;
}

.si__blog__details__mainthree {
  display: flex;
  align-items: center;
}

.si__blog__details__reply {
  position: relative;
  left: -25px;
  top: -34px;
}

@media (max-width: 991px) {
  .si__blog__details__reply {
    display: none;
  }
}

.si__blog__details__reply span {
  font-weight: 500;
  color: var(--si-common-black);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__details__reply span {
    display: inline-flex;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__details__reply span {
    display: inline-flex;
  }
}

.si__blog__details__reply span img {
  position: relative;
  left: -12px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__details__reply span img {
    top: 1px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__details__reply span img {
    top: 1px;
  }
}

.si__blog__details__righttwo {
  display: flex;
  gap: 42px;
  margin-top: 22px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__details__righttwo {
    display: block;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__details__righttwo {
    display: block;
  }
}

@media (max-width: 991px) {
  .si__blog__details__righttwo {
    display: block;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__details__title {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__details__title {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .si__blog__details__title {
    margin-top: 20px;
  }
}

.si__blog__details__title span {
  position: relative;
  top: -5px;
}

.si__blog__details__title p {
  margin-top: 11px;
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__details__title p {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__details__title p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .si__blog__details__title p br {
    display: none;
  }
}

.si__blog__details__at {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 22px;
}

.si__blog__details__from {
  margin-top: 22px;
}

.si__blog__details__from h4 {
  font-size: 30px;
  margin-bottom: 30px;
}

.si__blog__details__from textarea {
  border: 1px solid var(--si-border-7);
  padding: 21px 0px 0px 25px;
  height: 130px;
  border-radius: 10px;
  background: var(--si-common-white);
}

.si__blog__details__from textarea::placeholder {
  font-size: 18px;
  font-weight: 600;
  color: var(--si-common-text-body);
  background: var(--si-common-white);
}

.si__blog__details__from textarea:focus {
  border: 1px solid var(--si-border-7);
  box-shadow: none;
  outline: none;
  background: var(--si-common-white);
}

.si__blog__details .si__contact__btn {
  margin-top: 30px;
}

.si__blog__details__name {
  width: 50%;
}

.si__blog__details__name input {
  background: var(--si-common-white);
  border: 1px solid var(--si-border-7);
  border-radius: 10px;
}

.si__blog__details__name input::placeholder {
  font-size: 18px;
  font-weight: 600;
  color: var(--si-common-text-body);
}

.si__blog__details__name input:focus {
  border: 1px solid var(--si-border-7);
  box-shadow: none;
  outline: 0;
}

.si__blog__details__mailchip {
  width: 50%;
}

.si__blog__details__mailchip input {
  background: var(--si-common-white);
  border: 1px solid var(--si-border-7);
  border-radius: 10px;
}

.si__blog__details__mailchip input::placeholder {
  font-size: 18px;
  font-weight: 600;
  color: var(--si-common-text-body);
}

.si__blog__details__mailchip input:focus {
  border: 1px solid var(--si-border-7);
  box-shadow: none;
  outline: 0;
}

.si__blog__details__btn a {
  display: inline-block;
  background: var(--si-common-black);
  color: var(--si-common-white);
  padding: 13px 26px 11px 26px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
}

.si__blog__details__btn span {
  position: relative;
  left: -4px;
}

.si__blog__details__btn span i {
  font-size: 20px;
  font-weight: 500;
  background: var(--si-theme-primary);
  padding: 17px 19px;
  border-radius: 10px;
  color: var(--si-common-black);
}

.blog-details-text {
  margin-top: 43px;
}

.si__righttwo {
  margin-top: 18px !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-right {
    margin-bottom: 20px;
  }
}

.si__blog__checkbox {
  margin-bottom: -10px;
}

.si__blog__checkbox label {
  padding-left: 5px;
}

/*----------------------------------------*/
/*  5.3 Sidebar css
/*----------------------------------------*/
.si__blog__sidebar__searchtwo {
  position: relative;
}

.si__blog__sidebar__searchtwo input {
  background: transparent;
  border: 1px solid var(--si-border-7);
  border-radius: 10px;
  padding: 0px 0px 0px 20px;
}

.si__blog__sidebar__searchtwo input::placeholder {
  font-size: 18px;
  font-weight: 500;
  border: none;
}

.si__blog__sidebar__searchtwo input:focus {
  border: 1px solid var(--si-border-7);
  outline: 0;
  box-shadow: none;
}

.si__blog__sidebar__icontwo {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 6px;
  display: flex;
  align-items: center;
  text-align: center;
}

.si__blog__sidebar__icontwo a {
  display: inline-block;
  background: var(--si-theme-primary);
  padding: 8px 12px 11px 12px;
  border-radius: 10px;
}

.si__blog__sidebar__post {
  border: 1px solid var(--si-border-7);
  padding: 26px 24px 16px 24px;
  border-radius: 10px;
  margin-top: 30px;
}

.si__blog__sidebar__boxtwo > .si__blog__sidebar__post:first-child {
  margin-top: 0;
}

.si__blog__sidebar__post h4 {
  margin-bottom: 26px;
}

.si__blog__sidebar__rightthree {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

/* Sidebar product cards — compact thumb + text column */
.si__blog__sidebar__post .si__blog__sidebar__rightthree {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.si__blog__sidebar__post .si__blog__sidebar__imgtwo {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border-radius: 10px;
}

.si__blog__sidebar__post .si__blog__sidebar__imgtwo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
}

.si__blog__sidebar__post .si__blog__sidebar__texttwo {
  flex: 1;
  min-width: 0;
}

.si__blog__sidebar__post .si__blog__sidebar__texttwo h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.45;
}

.si__blog__sidebar__post .si__blog__sidebar__texttwo h5 a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__sidebar__post .si__blog__sidebar__rightthree {
    display: flex;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__sidebar__post .si__blog__sidebar__rightthree {
    display: flex;
  }
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__sidebar__post .si__blog__sidebar__rightthree {
    display: flex;
    gap: 12px;
  }

  .si__blog__sidebar__post .si__blog__sidebar__imgtwo {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }

  .si__blog__sidebar__post .si__blog__sidebar__texttwo h5 {
    font-size: 14px;
  }
}

.si__blog__sidebar__texttwo span {
  font-size: 16px;
  font-weight: 500;
}

.si__blog__sidebar__texttwo span svg {
  margin-right: 5px;
}

.si__blog__sidebar__texttwo h5 {
  margin-top: 7px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
}

.si__blog__sidebar__services {
  border: 1px solid var(--si-border-7);
  padding: 26px 29px 20px 29px;
  border-radius: 10px;
  margin-top: 30px;
}

.si__blog__sidebar__services h4 {
  margin-bottom: 26px;
}

/* Scrollable list — shows ~5 items, scroll for the rest */
.si__blog__sidebar__services__list {
  max-height: 325px;
  overflow-y: auto;
  padding-right: 4px;
}

.si__blog__sidebar__services__list::-webkit-scrollbar {
  width: 4px;
}

.si__blog__sidebar__services__list::-webkit-scrollbar-track {
  background: transparent;
}

.si__blog__sidebar__services__list::-webkit-scrollbar-thumb {
  background: var(--si-border-7);
  border-radius: 4px;
}

.si__blog__sidebar__services__list::-webkit-scrollbar-thumb:hover {
  background: var(--si-theme-primary);
}

.si__blog__sidebar__talha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--si-border-7);
  padding: 7px 7px 7px 20px;
  border-radius: 10px;
  transition: 0.6s;
  margin-bottom: 15px;
}

.si__blog__sidebar__talha:hover {
  background: var(--si-common-black);
  border: 1px solid var(--si-common-black);
  padding: 7px 7px 7px 20px;
}

.si__blog__sidebar__talha.active {
  background: var(--si-common-black);
  border: 1px solid var(--si-common-black);
  padding: 7px 7px 7px 20px;
}

.si__blog__sidebar__talha:hover .si__blog__sidebar__listfour span {
  color: var(--si-common-white);
}

.si__blog__sidebar__talha.active .si__blog__sidebar__listfour span {
  color: var(--si-common-white);
}

.si__blog__sidebar__talha:hover .si__blog__sidebar__iconthree a i,
.si__blog__sidebar__talha:hover .si__blog__sidebar__iconthree span i {
  background: var(--si-theme-primary);
  padding: 13px 13px 13px 15px;
  border-radius: 10px;
  color: var(--si-common-white);
}

.si__blog__sidebar__talha.active .si__blog__sidebar__iconthree a i,
.si__blog__sidebar__talha.active .si__blog__sidebar__iconthree span i {
  background: var(--si-theme-primary);
  padding: 13px 13px 13px 15px;
  border-radius: 10px;
  color: var(--si-common-white);
}

.si__blog__sidebar__listfour span {
  font-weight: 500;
  font-size: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si__blog__sidebar__listfour span {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .si__blog__sidebar__listfour span {
    font-size: 15px;
  }
}

.si__blog__sidebar__iconthree a i,
.si__blog__sidebar__iconthree span i {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  background: var(--si-common-white);
  color: var(--si-common-black);
  padding: 13px 13px 13px 15px;
  border-radius: 10px;
}

.si__blog__sidebar__search {
  border: 1px solid var(--si-border-7);
  padding: 26px 29px 34px 29px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .si__blog__sidebar__search {
    margin-top: 30px;
  }
}

.si__blog__sidebar__search h4 {
  margin-bottom: 26px;
}

.si__blog__sidebar__tags {
  border: 1px solid var(--si-border-7);
  padding: 26px 0px 23px 29px;
  border-radius: 10px;
  margin-top: 30px;
}

.si__blog__sidebar__tags h4 {
  margin-bottom: 26px;
}

.si__blog__sidebar__tags span a {
  display: inline-block;
  border: 1px solid var(--si-border-7);
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 21px 10px 21px;
  margin-right: 6px;
  margin-bottom: 10px;
  transition: 0.6s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__sidebar__tags span a {
    padding: 12px 15px 10px 15px;
  }
}

.si__blog__sidebar__tags span a:hover {
  background: var(--si-theme-primary);
  border: 1px solid var(--si-theme-primary);
  color: var(--si-common-white);
}

.si__blog__sidebar__call {
  border: 1px solid var(--si-border-7);
  padding: 28px 24px 28px 28px;
  border-radius: 10px;
  margin-top: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__sidebar__call {
    padding: 26px 22px 26px 26px;
  }
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__sidebar__call {
    padding: 24px 20px 24px 20px;
  }
}

.si__blog__sidebar__call h4 {
  margin-bottom: 14px;
}

.si__blog__sidebar__call p {
  margin-bottom: 18px;
  line-height: 1.65;
  padding-right: 2px;
}

.si__blog__sidebar__call .si__contact__btn {
  margin-top: 6px;
}

.si__blog__sidebar__call .si__contact__btn a {
  font-size: clamp(0.65rem, 0.2vw + 0.55rem, 0.8125rem);
  padding: 0.7em 1.25em;
  letter-spacing: 0.05em;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__blog__sidebar__call p br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__blog__sidebar__call p br {
    display: none;
  }
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__blog__sidebar__call p br {
    display: none;
  }
}

.si__blog__sidebar__contact-info li a,
.si__blog__sidebar__contact-info li span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.si__blog__sidebar__contact-info li a:hover {
  color: #f57e20;
}

.si__blog__sidebar__texttwo .si-product-card__learn-more {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.si__blog__sidebar__post-btn {
  padding: 8px 0 20px;
}

.si__blog__sidebar__post-btn .si__contact__btn {
  margin-top: 0;
}

.si__blog__sidebar__contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.si__blog__sidebar__contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.si__blog__sidebar__contact-info li:last-child {
  margin-bottom: 0;
}

.si__blog__sidebar__contact-info i {
  color: #f57e20;
  margin-top: 4px;
  flex-shrink: 0;
}

.si__blog__sidebar__quote {
  border: 1px solid var(--si-border-7);
  padding: 26px 29px 20px 29px;
  border-radius: 10px;
  margin-top: 30px;
}

.si__blog__sidebar__quote h4 {
  margin-bottom: 26px;
}

.si__blog__sidebar__quote input {
  background: transparent;
  border: 1px solid var(--si-border-7);
  border-radius: 10px;
  padding: 0px 0px 0px 20px;
  margin-bottom: 15px;
}

.si__blog__sidebar__quote input::placeholder {
  font-size: 18px;
  font-weight: 500;
  border: none;
  color: var(--si-common-text-body);
}

.si__blog__sidebar__quote input:focus {
  border: 1px solid var(--si-border-7);
  outline: 0;
  box-shadow: none;
}

.si__blog__sidebar__quote textarea {
  background: transparent;
  border: 1px solid var(--si-border-7);
  padding-left: 0;
  padding-right: 0;
  height: 150px;
  padding: 18px 0 17px 20px;
  border-radius: 10px;
}

.si__blog__sidebar__quote textarea::placeholder {
  font-size: 18px;
  font-weight: 500;
  border: none;
  color: var(--si-common-text-body);
}

.si__blog__sidebar__quote textarea:focus {
  border: 1px solid var(--si-border-7);
  outline: 0;
  box-shadow: none;
}

.blog-btn {
  margin-top: 25px !important;
}

.si-select-two {
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 500;
  padding: 18px 0 17px 20px;
  width: 100%;
  border: 1px solid var(--si-border-7);
  border-radius: 10px;
  color: var(--si-common-text-body);
  margin-bottom: 15px;
}

/*----------------------------------------*/
/*  1.0 Blog css
/*----------------------------------------*/
.si__our__blog__box {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .si__our__blog__box {
    margin-bottom: 28px;
  }
}

.si__our__blog__btn a {
  font-weight: 500;
  font-size: 20px;
  position: relative;
  color: var(--si-common-gray-2);
}

.si__our__blog__btn a::before {
  position: absolute;
  content: "";
  bottom: 3px;
  left: -1px;
  background: var(--si-common-gray-2);
  width: 95px;
  height: 1px;
}

.si__our__blog__btn a i {
  color: var(--si-common-black);
  margin-left: 5px;
}

.si__our__blog__number {
  margin-top: 59px;
}

@media (max-width: 991px) {
  .si__our__blog__number {
    margin-top: 0;
  }
}

.si__our__blog__number ul li {
  list-style: none;
  display: inline;
  margin-right: 10px;
}

.si__our__blog__number ul li a {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  background: var(--si-common-white);
  color: var(--si-common-black);
  border: 1px solid rgba(18, 18, 18, 0.25);
  border-radius: 10px;
  padding: 15px 21px 15px 21px;
}

@media (max-width: 991px) {
  .si__our__blog__number ul li a {
    padding: 11px 15px 11px 15px;
  }
}

.si__our__blog__number ul li a {
  transition: 0.6s;
}

.si__our__blog__number ul li a:hover {
  background: var(--si-theme-primary);
  border: 1px solid var(--si-theme-primary);
  color: var(--si-common-white);
}

.si__our__blog__number ul li a i {
  font-size: 22px;
}

.si__our__blog__box .si__blog__details__thumb {
  max-height: 220px;
  overflow: hidden;
  border-radius: 10px;
}

.si__our__blog__box .si__blog__details__thumb img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .si__our__blog__box .si__blog__details__thumb {
    max-height: 280px;
  }

  .si__our__blog__box .si__blog__details__thumb img {
    height: 280px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si__our__blog__box .si__blog__details__thumb {
    max-height: 380px;
  }

  .si__our__blog__box .si__blog__details__thumb img {
    height: 380px;
  }
}

@media only screen and (min-width: 992px) {
  .si__our__blog__box .si__blog__details__thumb {
    max-height: 640px;
  }

  .si__our__blog__box .si__blog__details__thumb img {
    height: 640px;
  }
}

.si__our__blog__box .si-product-card__learn-more {
  margin-top: 14px;
}

.si__blog__details__area .si__blog__sidebar__post .si__blog__sidebar__imgtwo {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
}

.si__our__blog__box .si__blog__details__text h4 {
  font-size: clamp(1.2rem, 1.8vw + 0.75rem, 1.75rem);
  line-height: 1.35;
  margin-bottom: 0;
}

.si__our__blog__box .si__blog__details__text h4 a:hover {
  color: var(--si-theme-primary);
}

.si__blog__details__list ul li i {
  margin-right: 6px;
  color: var(--si-theme-primary);
}

.si__blog__sidebar__texttwo span i {
  margin-right: 6px;
  color: var(--si-theme-primary);
}

.si__blog__sidebar__post .si__blog__sidebar__imgtwo a {
  display: block;
  height: 100%;
}

/*----------------------------------------*/
/*  1.0 Footer Style
/*----------------------------------------*/
.si-footer-logo a {
  width: 250px;
  height: 250px;
  background: var(--si-common-black-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 80px;
  z-index: 2;
  border: 1px solid var(--si-border-8);
}

.si-footer-area {
  background-color: #002e52 !important;
}

@media (max-width: 767px) {
  .si-footer-logo a {
    width: 190px;
    height: 190px;
    position: inherit;
    margin-bottom: 30px;
  }
}

.si-footer-widget-content p {
  color: var(--si-common-gray-4);
  font-size: 18px;
  margin-top: 5px;
}

.si-footer-widget-menu ul li {
  list-style: none;
  padding-bottom: 15px;
}

.si-footer-widget-menu ul li a {
  color: var(--si-common-gray-4);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.si-footer-widget-menu ul li a:hover {
  color: var(--si-theme-primary);
}

.si-footer-contact-list ul li {
  list-style: none;
  margin-bottom: 33px;
}

.si-footer-contact-list ul li span {
  padding-bottom: 11px;
  font-size: 16px;
  color: var(--si-common-gray-4);
  display: inline-block;
}

.si-footer-contact-list ul li P {
  color: var(--si-common-white);
  font-size: 18px;
}

.si-footer-img {
  display: flex;
}

@media (max-width: 767px) {
  .si-footer-img {
    display: block;
  }
}

@media (max-width: 767px) {
  .si-footer-img span {
    padding-bottom: 20px;
    display: inline-block;
  }
}

.si-footer-subscribe-form input {
  background: transparent;
  border-bottom: 1px solid #4e4e4e;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
  color: var(--si-common-gray-4);
  font-size: 18px;
  font-weight: 500;
  padding-left: 0;
  padding-bottom: 8px;
}

.si-footer-subscribe-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--si-common-gray-4);
  font-size: 18px;
  font-weight: 500;
}

.si-footer-subscribe-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--si-common-gray-4);
  font-size: 18px;
  font-weight: 500;
}

.si-footer-subscribe-form input:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--si-common-gray-4);
  font-size: 18px;
  font-weight: 500;
}

.si-footer-subscribe-form input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: var(--si-common-gray-4);
  font-size: 18px;
  font-weight: 500;
}

.si-footer-subscribe-form input::placeholder {
  /* MODERN BROWSER */
  color: var(--si-common-gray-4);
  font-size: 18px;
  font-weight: 500;
}

.si-footer-subscribe-form input:focus {
  border-bottom: 1px solid #4e4e4e;
}

.si-footer-subscribe-form button {
  position: absolute;
  right: 0px;
  bottom: 8px;
  transform: translateY(-50%);
}

.si-footer-col-1 {
  max-width: 400px;
  width: 100%;
  padding-bottom: 65px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-footer-col-1 {
    padding-bottom: 40px;
  }
}

.si-footer-col-2 {
  margin-left: 65px;
  padding-bottom: 65px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-footer-col-2 {
    margin-left: 0;
    padding-bottom: 40px;
  }
}

.si-footer-col-3 {
  margin-left: 38px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-footer-col-3 {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .si-footer-col-3 {
    margin-left: 0;
    margin-bottom: 30px;
  }
}

.si-footer-col-4 {
  margin-left: -25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-footer-col-4 {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .si-footer-col-4 {
    margin-left: 0;
    margin-bottom: 30px;
  }
}

.si-copyright-area {
  /* background: var(--si-common-black-3); */
  padding: 27px 0 10px;
  /* border-radius: 10px; */
  border-bottom: 1px solid #4e4e4e;
  text-align: center !important;
}

.si-copyright-content p {
  font-size: 18px;
}

/*----------------------------------------*/
/*  1.2 Banner Css
/*----------------------------------------*/
.si-banner-area {
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* Banner area — visible on all screen sizes */
.si-banner-img {
  overflow: hidden;
  height: 650px;
  position: relative;
  background-color: #5a524c;
  isolation: isolate;
}

/* Dark overlay on banner image */
.si-banner-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}
/* Oversized image + clip: parallax can move without exposing page background */
.si-banner-parallax-img {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100% + 45vh);
  top: calc(-22.5vh);
  max-width: none;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.si-banner-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 80px);
  line-height: normal;
  text-transform: uppercase;
  font-family: var(--si-ff-body);
  pointer-events: none;
}

.si-banner-accent {
  color: #f57e20;
}

.si-banner-quote {
  font-family: inherit;
  font-size: clamp(1.75rem, 3vw + 0.85rem, 4rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--si-common-white);
  text-align: center;
  max-width: 1200px;
  margin: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-banner-img {
    height: 500px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-banner-img {
    height: 420px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-banner-img {
    height: 340px;
  }
}

@media (max-width: 767px) {
  .si-banner-img {
    height: 260px;
  }

  .si-banner-quote {
    line-height: 1.4;
    font-size: clamp(1.375rem, 5.5vw + 0.35rem, 2.125rem);
  }
}

@media (max-width: 480px) {
  .si-banner-img {
    height: 220px;
  }
}

/* Dark overlay for hero/top banner */
.si-hero-area.si-background {
  position: relative;
  overflow: hidden;
}
.si-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.si-hero-area.si-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

.si-hero-area.si-background .container {
  position: relative;
  z-index: 2;
}

/* Hero Title Mask & Kinetic Rotator */
.si-hero-title-slider {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 20px;
  perspective: 1000px;
}

.hero-slide-item {
  grid-area: 1 / 1 / 2 / 2;
  opacity: 0;
  visibility: hidden;
  filter: blur(14px);
  transform: translateY(35px) scale(0.97);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.85s ease;
  pointer-events: none;
  margin-bottom: 0 !important;
  will-change: opacity, transform, filter;
}

.hero-slide-item.active {
  opacity: 1;
  visibility: visible;
  filter: blur(0px);
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-slide-item.exit {
  opacity: 0;
  visibility: hidden;
  filter: blur(14px);
  transform: translateY(-30px) scale(1.03);
  transition:
    opacity 0.65s cubic-bezier(0.7, 0, 0.84, 0),
    transform 0.65s cubic-bezier(0.7, 0, 0.84, 0),
    filter 0.65s cubic-bezier(0.7, 0, 0.84, 0);
}

/* Hero Accent Text */
.si-hero-title .si-hero-outline-text {
  color: #f57e20;
  display: inline-block;
}

/* Interactive Progress Pill Dots */
.si-hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.si-hero-dot {
  width: 32px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition:
    background 0.3s ease,
    width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.si-hero-dot-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #f57e20;
  border-radius: 4px;
}

.si-hero-dot.active {
  width: 52px;
  background: rgba(255, 255, 255, 0.3);
}

.si-hero-dot.active .si-hero-dot-fill {
  animation: heroDotProgress 4s linear forwards;
}

@keyframes heroDotProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.si-hero-area.si-background.si-hero-white {
  min-height: 100vh;
  min-height: 100svh;
  background-position: center right !important;
  margin-bottom: 0;
}

/*----------------------------------------*/
/*  1.1 Hero css
/*----------------------------------------*/
.si-hero-ptb {
  padding-top: 220px;
  padding-bottom: 220px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-hero-ptb {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-hero-ptb {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .si-hero-ptb {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.si-hero-desc {
  display: flex;
  justify-content: center;
  margin-left: -95px;
  font-size: 24px;
  margin-top: 78px;
  margin-bottom: 48px;
}

@media (max-width: 1399px) {
  .si-hero-desc {
    margin-left: 0px;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .si-hero-desc {
    font-size: 18px;
  }
}

.si-hero-title {
  font-weight: 700;
}

@media (max-width: 1199px) {
  .si-hero-title:not(.si-hero-banner-title) {
    margin-top: 20px;
  }
}

.si-hero-title span {
  margin-left: 70px;
}

@media (max-width: 1199px) {
  .si-hero-title span {
    margin-left: 0px;
  }
}

.si-hero-title-light-text {
  color: transparent;
  -webkit-text-stroke: 3px var(--si-common-black);
  display: flex;
  justify-content: right;
}

@media (max-width: 1199px) {
  .si-hero-title-light-text {
    display: block;
  }
}

.si-hero-bottom {
  gap: 28px;
  margin-left: 155px;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .si-hero-bottom {
    margin-left: 0;
  }
}

.si-hero-bottom a {
  margin-top: -13px;
  display: inline-block;
}

.si-hero-bottom a svg {
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
}

.si-hero-bottom a svg:hover {
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  -o-transform: rotate(35deg);
  transform: rotate(35deg);
}

.si-hero-bottom p {
  border-bottom: 1px solid var(--si-common-black);
  padding-bottom: 10px;
  color: var(--si-common-black);
  font-size: 24px;
}

@media (max-width: 767px) {
  .si-hero-bottom p {
    font-size: 18px;
  }
}

.si-hero-thumb img {
  border-radius: 0 0 0 0;
}

.si-hero-shape1 {
  position: absolute;
  top: 39.9%;
  right: 8.2%;
}

@media (max-width: 1470px) {
  .si-hero-shape1 {
    display: none;
  }
}

.si-hero-shape2 {
  position: absolute;
  top: 33.5%;
  right: 13.4%;
}

@media (max-width: 1470px) {
  .si-hero-shape2 {
    display: none;
  }
}

.si-hero-white.si-hero-ptb {
  padding-bottom: 220px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-hero-white.si-hero-ptb {
    padding-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .si-hero-white.si-hero-ptb {
    padding-bottom: 100px;
  }
}

.si-hero-white .si-hero-title-box h1 {
  color: var(--si-common-white);
}

.si-hero-white .si-hero-title-box h1 span {
  margin-left: 0;
  font-family: var(--si-ff-heading);
  color: var(--si-common-white);
  font-weight: 400;
}

.si-hero-white .si-hero-bottom {
  gap: 40px;
  margin-left: 0px;
  margin-top: 0;
}

@media (max-width: 767px) {
  .si-hero-white .si-hero-bottom {
    display: block !important;
  }
}

.si-hero-white .si-hero-bottom p {
  color: var(--si-common-gray-4);
  margin: 0;
  padding: 0;
  border: none;
}

.si-hero-white .si-hero-thumb-2 img {
  margin-left: -35px;
  width: 100%;
  margin-top: 65px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-hero-white .si-hero-thumb-2 img {
    margin-left: 0;
    width: 100%;
  }
}

/* Hero banner — fluid type & proportional spacing (same rhythm at every breakpoint) */
.si-hero-title-box {
  --hero-title-lh: 1.08;
  --hero-subtitle-lh: 1.65;
  --hero-title-subtitle-gap: 0.233em;
  --hero-subtitle-cta-gap: 1em;
}

.si-hero-banner-title {
  font-family: "Roboto", sans-serif;
  font-weight: var(--si-fw-bold);
  font-size: clamp(2.2rem, 6vw + 1.5rem, 6.5rem);
  line-height: var(--hero-title-lh);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: var(--hero-title-subtitle-gap);
}

@media (min-width: 768px) and (max-width: 991px) {
  .si-hero-banner-title {
    font-size: clamp(3.2rem, 6.5vw, 4.2rem);
    line-height: 1.1;
  }
}

@media (max-width: 767px) {
  .si-hero-banner-title {
    font-size: clamp(2rem, 8.5vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.5px;
  }

  .si-hero-cta-btn {
    font-size: 0.95rem;
    padding: 14px 28px;
  }
}

.si-hero-white .si-hero-title-box .si-hero-outline-text {
  font-family: "Roboto", sans-serif;
  font-weight: var(--si-fw-bold);
  color: #f57e20;
}

.si-hero-subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.45vw + 0.75rem, 1.25rem);
  line-height: var(--hero-subtitle-lh);
  color: #cccccc;
  max-width: clamp(17.5rem, 42vw, 33.75rem);
  margin-top: 0;
  margin-bottom: var(--hero-subtitle-cta-gap);
}

.si-hero-cta-wrap {
  margin-top: 0 !important;
}

.si-hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  max-width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.35vw + 0.65rem, 1rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--si-common-white);
  background: #ff7f20;
  border: 1px solid #ff7f20;
  border-radius: 4px;
  padding: 0.85em 1.75em;
  margin-top: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.si-hero-cta-btn i {
  /* color: #ff7f20; */
  color: var(--si-common-white);
  font-size: 1em;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.si-hero-cta-btn:hover {
  background: #ff7f20;
  border-color: #ff7f20;
  color: var(--si-common-white);
}

.si-hero-cta-btn:hover i {
  color: var(--si-common-white);
  transform: translateX(4px);
}

@media (max-width: 479px) {
  .si-hero-cta-btn {
    /* width: 100%; */
    justify-content: center;
  }
}

/* Home hero — tablet & mobile: next-banner peek + vertically balanced content */
@media (max-width: 1199px) {
  .si-hero-area.si-background.si-hero-white {
    --hero-next-banner-peek: clamp(56px, 10vh, 92px);
    --hero-content-vspace: clamp(84px, 13vh, 116px);
    min-height: calc(100svh - var(--hero-next-banner-peek));
    min-height: calc(100vh - var(--hero-next-banner-peek));
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }

  .si-hero-area.si-background.si-hero-white.si-hero-ptb {
    padding-top: var(--hero-content-vspace);
    padding-bottom: var(--hero-content-vspace);
  }

  .si-hero-area.si-background.si-hero-white .container {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .si-hero-area.si-background.si-hero-white {
    --hero-next-banner-peek: clamp(52px, 9vh, 80px);
    --hero-content-vspace: clamp(76px, 12vh, 104px);
  }
}

/*----------------------------------------*/
/*  1.3 About css
/*----------------------------------------*/
.si-about-img {
  margin-right: 21px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .si-about-img {
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .si-about-img img {
    width: 100%;
  }
}

.si-about-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--si-theme-primary) 0%,
    rgba(245, 126, 32, 0) 100%
  );
  z-index: 2;
  width: 1212px;
  height: 1212px;
  overflow: hidden;
}

.si-about-desc {
  margin-bottom: 117px;
  margin-left: 93px;
}

@media (max-width: 1199px) {
  .si-about-desc {
    margin-left: 0;
    margin-bottom: 30px;
  }
}

.si-about-box {
  background: #ffffff;
  border: 1px solid var(--si-border-2);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  padding: 12px 27px;
}

@media (max-width: 767px) {
  .si-about-box {
    margin-bottom: 30px;
  }
}

.si-about-box-content {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .si-about-box-content {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .si-about-box-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }

  .si-about-box-content h2 {
    order: -1;
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }

  .si-about-box-content span {
    order: 0;
    margin-left: 0;
    width: 100%;
    padding-left: 16px;
  }

  .si-about-box-content span::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.si-about-box-content span {
  margin-left: 22px;
}

.si-about-box-content span::before {
  position: absolute;
  content: "";
  top: 25%;
  transform: translateY(-25%);
  left: -22px;
  width: 8px;
  height: 8px;
  background: var(--si-common-black);
  border-radius: 40px;
}

.si-about-shape {
  position: absolute;
  right: 8.5%;
  top: 21%;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-about-shape {
    right: 5%;
    top: 10%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-about-shape {
    display: none;
  }
}

.si-about-img-top {
  position: relative;
}

.si-about-img-top::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 96px;
  top: 48px;
  left: -2px;
  background: url(../img/about-us/shape-2.png);
  background-repeat: no-repeat;
  transform: rotate(0deg);
  z-index: -1;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .si-about-img-top::before {
    top: -22px;
    left: 76px;
    transform: rotate(20deg);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-about-img-top::before {
    display: none;
  }
}

.si-about-img-top img {
  border-radius: 50%;
  border: 8px solid var(--si-common-white);
}

.si-about-video-text {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -18%;
  left: -25%;
  background-color: var(--si-common-white);
  -webkit-mask-position: center;
  mask-position: center;
  z-index: -1;
  border-radius: 50%;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .si-about-video-text {
    top: -33%;
    left: -10%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-about-video-text {
    display: none;
  }
}

.si-about-video-text img {
  border: none;
}

.si-about-content-2 {
  margin-left: -25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-about-content-2 {
    margin-left: 0;
  }
}

.si-about-desc-2 {
  margin-bottom: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-about-desc-2 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.si-about-area .col-md-6:last-child .si-about-box-2 {
  width: 382px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-about-area .col-md-6:last-child .si-about-box-2 {
    width: 100%;
  }
}

.si-about-box-2 {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background: var(--si-common-white);
  padding: 18px 36px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-about-box-2 {
    padding: 18px 26px;
  }
}

@media (max-width: 767px) {
  .si-about-box-2 {
    margin-bottom: 30px;
  }
}

.si-about-box-2 h2 {
  font-weight: 600;
}

.si-about-box-2 span::before {
  display: none;
}

.si-about-box-content-2 {
  gap: 20px;
}

.si-about-text-inner a {
  position: absolute;
  top: 95px;
  left: 100px;
}

.si-about-rotate-image {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: rotate2 10s infinite linear;
  animation: rotate2 10s infinite linear;
  position: absolute;
  top: 24px;
  left: 27px;
}

.si-about-text-img {
  display: flex;
  justify-content: right;
  position: absolute;
  bottom: 11.8%;
  right: 1%;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-about-text-img {
    display: none;
  }
}

.si-about-text-img h1 {
  font-size: 300px;
  font-weight: var(--si-fw-bold);
  letter-spacing: -0.32px;
  line-height: 236px;

  /* Gradient text */
  /* background: linear-gradient(90deg, #004071, #ff7f20); */
  background-color: #02375f;

  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  text-align: right;
}

/*----------------------------------------*/
/*  1.4 Service / Product Card css
/*----------------------------------------*/

/* Dark black background variant for the Our Products section */
.si-products-dark {
  background-color: #0a0a0a;
  background-image: none !important;
}

.si-products-dark .si-section-title span {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.si-products-dark .si-section-title h2 {
  color: #fff;
}

/* Cards on dark background */
.si-products-dark .si-product-card {
  background: #1e1e1e;
  border-color: rgba(245, 126, 32, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.si-products-dark .si-product-card:hover {
  box-shadow:
    0 16px 48px rgba(245, 126, 32, 0.22),
    0 4px 16px rgba(0, 0, 0, 0.35);
}

.si-products-dark .si-product-card__title a {
  color: #ffffff;
}

.si-products-dark .si-product-card__desc {
  color: #aaaaaa;
}

.si-products-dark .si-product-card__footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* pill button stays the same coral gradient on dark bg — no override needed */

/* Nav buttons on dark bg */
.si-products-dark .si-service-slider-nav button {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.si-products-dark .si-service-slider-nav button:hover {
  background-color: var(--si-theme-primary, #004071);
  border-color: var(--si-theme-primary, #004071);
  color: #ffffff;
}

/* ============================================
   Product Card — Premium Redesign
   Theme primary: #f57e20 (warm coral/orange)
   ============================================ */

/* Card wrapper */
.si-product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid rgba(245, 126, 32, 0.12);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 0 0 0 rgba(245, 126, 32, 0);
  transition:
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.4s ease;
}

/* Accent gradient bar on top of card */
.si-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, #f57e20 0%, #ffb89a 50%, #ff7a55 100%); */
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.si-product-card:hover::before {
  opacity: 1;
}

.si-product-card:hover {
  box-shadow:
    0 16px 48px rgba(245, 126, 32, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.08);
  /* transform: translateY(-6px); */
  border-color: rgba(245, 126, 32, 0.35);
}

/* ---- Swiper equal-height slides ---- */
.si-service-slider .swiper-wrapper {
  align-items: stretch;
  padding-top: 0;
}

.si-service-slider .swiper-slide {
  height: auto;
}

@media (max-width: 575px) {
  .si-service-slider .swiper-slide:not(.swiper-slide-active) .si-product-card,
  .si-service-slider .swiper-slide:not(.swiper-slide-active) .si-blog-box {
    opacity: 0.75;
    transition: opacity 0.3s ease;
  }

  .si-service-slider .swiper-slide-active .si-product-card,
  .si-service-slider .swiper-slide-active .si-blog-box {
    opacity: 1;
  }
}

/* Image wrapper */
.si-product-card__img-wrap {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: #f5f5f5;
}

/* Subtle gradient overlay on image bottom */
.si-product-card__img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(18, 18, 18, 0.28) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.si-product-card:hover .si-product-card__img-wrap::after {
  opacity: 1;
}

.si-product-card__img-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.si-product-card:hover .si-product-card__img-wrap img {
  transform: scale(1.07);
}

@media (hover: none) {
  .si-product-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: none;
    border-color: rgba(245, 126, 32, 0.12);
  }
  .si-product-card:hover::before {
    opacity: 0;
  }
  .si-product-card:hover .si-product-card__img-wrap img {
    transform: none;
  }
  .si-product-card:hover .si-product-card__img-wrap::after {
    opacity: 0;
  }
}

/* Card body */
.si-product-card__body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

/* Tiny accent dot before title */
.si-product-card__body::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #f57e20, #f9a55a);
  border-radius: 2px;
  margin-bottom: 16px;
}

.si-product-card__title {
  font-size: var(--htech-fs-card-title);
  font-weight: var(--si-fw-semibold);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.si-product-card__title a {
  color: var(--si-common-black, #121212);
  text-decoration: none;
  transition: color 0.3s ease;
  background-image: linear-gradient(#f57e20, #f57e20);
  background-size: 0 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition:
    color 0.3s ease,
    background-size 0.35s ease;
}

.si-product-card__title a:hover {
  color: #e07a55;
  background-size: 100% 1.5px;
}

.si-product-card__desc {
  font-size: var(--htech-fs-card-desc);
  color: #6b6b6b;
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
  font-weight: 400;
}

/* Footer — learn more pinned to bottom */
/* Footer — learn more pinned to bottom */
.si-product-card__footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 18, 18, 0.07);
}

/* Learn More button — pill style */
.si-product-card__learn-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: var(--si-fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f57e20;
  padding: 0;
  border-radius: 0;
  text-decoration: none;
  transition:
    gap 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.si-product-card__learn-more:hover {
  color: #f57e20;
}

.si-product-card__learn-more i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.si-product-card__learn-more:hover i {
  transform: translateX(4px);
}

/* ---- Responsive tweaks ---- */

/* Large screens (≥1200px): taller image */
@media (min-width: 1200px) {
  .si-product-card__img-wrap img {
    height: 250px;
  }
}

/* Tablet (768px – 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-product-card__img-wrap img {
    height: 200px;
  }
  .si-product-card__body {
    padding: 20px 22px 22px;
    text-align: left;
  }
  .si-product-card__footer {
    justify-content: flex-start;
  }
  .si-product-card__learn-more {
    padding: 0;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .si-product-card__img-wrap img {
    height: 240px;
  }
  .si-product-card {
    min-height: unset;
  }
  .si-product-card__body {
    padding: 22px 22px 24px;
    text-align: left;
  }
  .si-product-card__title {
    font-size: 19px;
    text-align: left;
  }
  .si-product-card__desc {
    font-size: 14.5px;
    text-align: left;
  }
  .si-product-card__footer {
    margin-top: 18px;
    justify-content: flex-start;
    text-align: left;
  }
  .si-product-card__learn-more {
    padding: 0;
    text-align: left;
  }
  /* Section heading left-aligned to match desktop */
  .si-service-area .si-section-title {
    text-align: left;
    padding-bottom: 20px;
  }
  /* Nav buttons stay right-aligned on all screens */
  .si-service-slider-nav {
    justify-content: flex-end;
    margin-bottom: 20px;
  }
  /* Tighten slider top margin so top & bottom feel balanced */
  .si-service-area .si-service-slider {
    margin-top: 0;
  }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .si-product-card__img-wrap img {
    height: 210px;
  }
  .si-product-card__body {
    padding: 18px 18px 20px;
    text-align: left;
  }
  .si-product-card__footer {
    justify-content: flex-start;
  }
  .si-product-card__learn-more {
    font-size: 12.5px;
    padding: 0;
  }
  .si-service-area .si-section-title span {
    display: block;
    text-align: left;
  }
  .si-service-area .si-section-title h2 {
    text-align: left;
  }
}

/* ---- Legacy service classes kept intact for other pages ---- */
.si-service-box {
  background: var(--si-common-white);
  padding: 30px 35px 28px 35px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .si-service-box {
    margin-bottom: 30px;
  }
}

.si-service-box:hover .si-service-border-shape span svg {
  stroke-opacity: 1;
}

.si-service-title {
  margin-bottom: 25px;
  transition: 0.5s;
}

.si-service-title a {
  transition: 0.5s;
}

.si-service-list {
  padding-top: 215px;
}

.si-service-border-shape span {
  position: absolute;
  left: -2px;
  top: 47.5%;
}

.si-service-border-shape span svg {
  stroke-opacity: 0.28;
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
}

.si-service-border-shape h4 {
  position: absolute;
  left: 47.5%;
  top: 29.5%;
}

.si-service-img-text {
  font-size: 200px;
  font-weight: var(--si-fw-bold);
  line-height: 1.1;
  background-image: url(../img/service/text1.jpg);
  background-size: cover;
  background-position: center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  position: absolute;
  background-repeat: no-repeat;
}

.si-service-img-text-2 {
  font-size: 200px;
  font-weight: var(--si-fw-bold);
  line-height: 1.1;
  background-image: url(../img/service/text2.jpg);
  background-size: cover;
  background-position: center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  position: absolute;
  background-repeat: no-repeat;
}

.si-service-img-text-3 {
  font-size: 200px;
  font-weight: var(--si-fw-bold);
  line-height: 1.1;
  background-image: url(../img/service/text3.jpg);
  background-size: cover;
  background-position: center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  position: absolute;
  background-repeat: no-repeat;
}

.si-service-list {
  position: relative;
  z-index: 1;
}

.si-service-list ul li {
  list-style: none;
  color: var(--si-common-black);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.si-service-list ul li span {
  margin-right: 10px;
}

/* Service Slider Nav Buttons */
.si-service-slider-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 30px;
  gap: 10px;
}

.si-service-slider-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--si-border-1);
  background: transparent;
  color: var(--si-common-black);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
}

.si-service-slider-nav button:hover {
  background: var(--si-common-black);
  color: var(--si-common-white);
  border-color: var(--si-common-black);
}

.si-service-slider {
  margin-top: 30px;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
}

.si-service-2-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--si-border-1);
  padding: 42px 49px 30px 49px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

/* Tablet (768px - 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-service-2-box {
    display: block;
    padding: 30px 30px 20px 30px;
  }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
  .si-service-2-box {
    display: block;
    padding: 24px 20px 16px 20px;
  }
}

.si-service-2-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  background: url(../img/service/bg-2.jpg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  opacity: 0;
  z-index: -1;
  border-radius: 10px;
  transition: 0.6s;
}

.si-service-2-box:hover::before {
  height: 100%;
  opacity: 1;
  bottom: 0;
}

.si-service-2-main {
  display: flex;
  align-items: center;
  gap: 41px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-service-2-main {
    gap: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .si-service-2-main {
    gap: 14px;
    margin-bottom: 16px;
  }
}

.si-service-2-number span {
  font-weight: 600;
  font-size: 18px;
  transition: 0.6s;
}

@media (max-width: 767px) {
  .si-service-2-number span {
    font-size: 16px;
  }
}

.si-service-2-box:hover .si-service-2-number span {
  color: var(--si-common-white);
}

.si-service-2-text h3 {
  margin-bottom: 20px;
  font-size: clamp(1.125rem, 1.5vw + 0.85rem, 1.625rem);
  line-height: 1.35;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-service-2-text h3 {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .si-service-2-text h3 {
    margin-bottom: 8px;
  }
}

.si-service-2-text h3 a {
  transition: 0.3s;
}

.si-service-2-box:hover .si-service-2-text h3 {
  color: var(--si-common-white);
}

.si-service-2-box:hover .si-service-2-text p {
  color: var(--si-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-service-2-list {
    margin-top: 5px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .si-service-2-list {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.si-service-2-list ul li {
  list-style: none;
  font-size: var(--htech-fs-content);
  font-weight: var(--si-fw-regular);
  margin-bottom: 10px;
  color: var(--si-common-black);
  transition: 0.6s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-service-2-list ul li {
    font-size: 17px;
    margin-bottom: 8px;
  }
}

@media (max-width: 767px) {
  .si-service-2-list ul li {
    font-size: 15px;
    margin-bottom: 6px;
  }
}

.si-service-2-list ul li span {
  font-weight: var(--si-fw-bold);
  color: var(--si-common-black);
  margin-right: 11px;
  transition: 0.6s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-service-2-list p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .si-service-2-list p {
    font-size: 14px;
  }
}

.si-service-2-box:hover .si-service-2-list ul li {
  color: var(--si-common-white);
}

.si-service-2-box:hover .si-service-2-list ul li span {
  color: var(--si-common-white);
}

.si-service-2-icon a {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--si-common-black);
  transition: 0.6s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-service-2-icon a {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}

@media (max-width: 767px) {
  .si-service-2-icon a {
    width: 65px;
    height: 65px;
    line-height: 65px;
  }
}

.si-service-2-icon a svg {
  transition: 0.5s;
}

.si-service-2-box:hover .si-service-2-icon a {
  transform: rotate(80deg);
  background: var(--si-theme-primary);
  border: 1px solid var(--si-theme-primary);
}

.si-service-2-box:hover .si-service-2-icon a img {
  filter: brightness(0) invert(1);
}

.si-service-2-shape {
  position: absolute;
  top: 0;
  bottom: 23.6%;
  left: 0;
  justify-content: center;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si-service-2-shape {
    display: none;
  }
}

/*----------------------------------------*/
/*  1.5 Portfolio css
/*----------------------------------------*/
.si-portfolio-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -3px;
  font-size: 160px;
  line-height: 175px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-portfolio-title {
    font-size: 95px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-portfolio-title {
    font-size: 75px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .si-portfolio-title {
    font-size: 40px;
    margin-left: 0;
    line-height: 1.2;
  }
}

.si-portfolio-box {
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-portfolio-box {
    margin-top: 30px;
  }
}

@media (max-width: 1199px) {
  .si-portfolio-box {
    margin-left: 0;
  }
}

.si-portfolio-thumb-height1 {
  height: 370px;
}

.si-portfolio-thumb-height2 {
  height: 600px;
}

.si-portfolio-thumb-height3 {
  height: 370px;
}

@media (max-width: 991px) {
  .si-portfolio-thumb-height3 a img {
    width: 100%;
  }
}

.si-portfolio-thumb-height4 {
  height: 368px;
}

.si-portfolio-thumb-height5 {
  height: 500px;
}

.si-portfolio-content {
  margin-top: 20px;
  padding-bottom: 4px;
}

.si-portfolio-2-box {
  display: inline-block;
}

@media (max-width: 991px) {
  .si-portfolio-2-bottom {
    margin-bottom: 25px;
  }
}

.si-portfolio-2-thumb {
  position: relative;
}

.si-portfolio-2-thumb img {
  transition: 0.5s;
}

.si-portfolio-2-thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0) 59.62%,
    rgba(18, 18, 18, 0.9) 100%
  );
  overflow: hidden;
}

.si-portfolio-2-thumb:hover .si-portfolio-2-text {
  bottom: 23px;
  opacity: 1;
}

.si-portfolio-2-text {
  position: absolute;
  bottom: -20px;
  left: 39px;
  transition: 0.6s;
  opacity: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .si-portfolio-2-text {
    left: 19px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-portfolio-2-text {
    left: 19px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-portfolio-2-text {
    left: 19px;
  }
}

.si-portfolio-2-text span {
  color: var(--si-common-white);
  position: relative;
}

.si-portfolio-2-text span::before {
  position: absolute;
  content: "";
  right: -94%;
  bottom: 9px;
  width: 100px;
  height: 1px;
  background: var(--si-border-7);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-portfolio-2-text span::before {
    width: 70px;
    right: -65%;
  }
}

.si-portfolio-2-text h3 {
  color: var(--si-common-white);
  margin-top: 16px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .si-portfolio-2-text h3 {
    font-size: 29px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .si-portfolio-2-text h3 {
    font-size: 26px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-portfolio-2-text h3 {
    font-size: 21px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-portfolio-2-text h3 {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  1.6 Team css
/*----------------------------------------*/
.si-team-box {
  background: var(--si-common-black-2);
  border: 1px solid var(--si-border-6);
  border-radius: 10px;
  padding: 33px 38px 0 38px;
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
}

.si-team-box:hover {
  background: var(--si-theme-primary);
}

@media (max-width: 991px) {
  .si-team-box {
    margin-bottom: 30px;
  }
}

.si-team-box:hover .si-team-title,
.si-team-box:hover .si-team-designation {
  color: var(--si-common-black);
}

.si-team-title {
  color: var(--si-common-white);
  -webkit-transition: 0.2s 0.3s ease-in-out;
  -moz-transition: 0.2s 0.3s ease-in-out;
  -ms-transition: 0.2s 0.3s ease-in-out;
  -o-transition: 0.2s 0.3s ease-in-out;
  transition: 0.2s 0.3s ease-in-out;
}

.si-team-designation {
  color: var(--si-common-gray);
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
  margin-bottom: 5px;
  display: inline-block;
}

.si-team-shape {
  position: absolute;
  bottom: 0;
  left: 0px;
}

.si-team-shape img {
  opacity: 0.1;
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
}

.si-team-box:hover .si-team-shape img {
  opacity: 1;
}

.si-team-2-area {
  position: relative;
}

.si-team-2-thumb img {
  transition: 0.6s;
}

@media (max-width: 767px) {
  .si-team-2-thumb img {
    width: 100%;
  }
}

.si-team-2-text {
  margin-top: 25px;
  text-align: center;
}

.si-team-2-text span {
  position: relative;
  top: -4px;
}

.si-team-2-shape {
  position: absolute;
  right: 3.7%;
  bottom: 10.6%;
}

.si-team-3-area {
  padding-top: 190px;
  padding-bottom: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-team-3-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.si-team-3-area .si-circle-btn-box {
  margin-top: -49px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-team-3-area .si-circle-btn-box {
    margin-top: 0;
  }
}

.si-team-3-box {
  background: #f6f0f8;
}

.si-team-3-box .si-team-shape img {
  opacity: 1 !important;
}

.si-team-3-box .si-team-designation {
  color: #554d4d;
}

.si-team-3-box .si-team-title {
  color: var(--si-common-black);
}

/*----------------------------------------*/
/*  1.7 Award css
/*----------------------------------------*/
.si-award-box-2 {
  margin-top: -105px;
  margin-left: 23px;
}

@media (max-width: 1199px) {
  .si-award-box-2 {
    margin-top: 0px;
    margin-left: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-award-box-2 {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}

.si-award-box-3 {
  margin-top: -258px;
  margin-left: 45px;
}

@media (max-width: 1199px) {
  .si-award-box-3 {
    margin-top: 0px;
    margin-left: 0px;
  }
}

.si-award-box-number {
  display: inline-block;
  width: 260px;
  height: 260px;
  place-content: center;
  text-align: center;
  border-radius: 50%;
}

.si-award-box-number p {
  font-weight: 700;
}

.si-award-box-number-2 {
  border: 1px solid var(--si-border-2);
  width: 300px;
  height: 300px;
}

@media (max-width: 767px) {
  .si-award-box-number-2 {
    width: 260px;
    height: 260px;
  }
}

.si-award-box-number-3 {
  border: 1px solid var(--si-border-2);
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.08));
  width: 360px;
  height: 360px;
}

@media (max-width: 767px) {
  .si-award-box-number-3 {
    width: 260px;
    height: 260px;
  }
}

.si-award-box-content-inner {
  gap: 30px;
}

@media (max-width: 767px) {
  .si-award-box-content-inner {
    display: block !important;
  }
}

.si-award-box-content-inner span {
  background: var(--si-common-white);
  padding: 2px 23px;
  border-radius: 50px;
  border: 1px solid var(--si-border-1);
  display: inline-block;
}

@media (max-width: 767px) {
  .si-award-box-content-inner span {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .si-award-box-content-text svg {
    width: 260px !important;
  }
}

.si-award-shape {
  position: absolute;
  top: -21%;
  left: -30px;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

@media (max-width: 1399px) {
  .si-award-shape {
    display: none;
  }
}

.si-award-shape2 {
  position: absolute;
  right: 9.2%;
  bottom: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-award-shape2 {
    display: none;
  }
}

/*----------------------------------------*/
/*  1.8 Testimonial css
/*----------------------------------------*/
.si-testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Image ko dark aur smooth banane ke liye */
  filter: brightness(40%) contrast(110%);

  /* Optional */
  transition: 0.3s ease;
}

.si-testimonial-spacing {
  padding-top: 585px;
}

/* Compact testimonial band (index — no overlapping slider) */
.si-testimonial-band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  background-color: #0d0d0d;
}

.si-testimonial-band .si-testimonial-bg {
  overflow: hidden;
  z-index: 0;
}

/* Oversized image + clip: parallax can move without exposing page background */
.si-testimonial-band .si-testimonial-parallax-img {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100% + 45vh);
  top: calc(-22.5vh);
  max-width: none;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.si-testimonial-band .si-testimonial-title {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25;
  font-family: var(--si-ff-body);
  font-size: clamp(1.75rem, 3vw + 0.85rem, 4rem);
  letter-spacing: -0.01em;
  color: var(--si-common-white);
}

.si-testimonial-band .si-testimonial-title .si-banner-accent {
  color: #f57e20;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-testimonial-band {
    min-height: 280px;
    padding: 70px 32px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-testimonial-band {
    min-height: 260px;
    padding: 60px 28px;
  }
}

@media (max-width: 767px) {
  .si-testimonial-band {
    padding: 50px 20px;
    min-height: 220px;
  }

  .si-testimonial-band .si-testimonial-title {
    line-height: 1.35;
    font-size: clamp(1.375rem, 5.5vw + 0.35rem, 2.125rem);
  }
}

.si-testimonial-active {
  width: 426px;
  height: 100%;
  margin-top: -338px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-testimonial-active {
    margin-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-testimonial-active {
    margin-top: 70px;
    padding-bottom: 70px;
    width: 390px;
  }
}

.si-testimonial-title {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--si-common-white);
  /* margin-left: -40px; */
  margin-bottom: 4px;
  font-size: 160px;
}

@media only screen and (min-width: 1801px) and (max-width: 1850px) {
  .si-testimonial-title {
    font-size: 140px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1800px) {
  .si-testimonial-title {
    font-size: 130px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .si-testimonial-title {
    font-size: 130px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .si-testimonial-title {
    font-size: 130px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-testimonial-title {
    font-size: 80px;
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-testimonial-title {
    font-size: 60px;
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-testimonial-title {
    font-size: 40px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .si-testimonial-title {
    font-size: 40px;
    margin-left: 0;
  }
}

.si-testimonial-top {
  padding: 30px 30px 40px 37px;
  border: 1px solid var(--si-border-2);
}

.si-testimonial-top h4 {
  font-weight: 400;
  padding-top: 18px;
}

.si-testimonial-ratting-number {
  color: var(--si-common-gray-2);
  font-weight: 500;
  padding-top: 20px;
  display: inline-block;
  margin-left: 12px;
}

.si-testimonial-content {
  background: var(--si-common-black);
  padding: 20px 35px;
  gap: 27px;
}

.si-testimonial-text span {
  color: #bababa;
}

.si-testimonial-text h4 {
  color: var(--si-common-white);
}

.si-testimonial-img img {
  border-radius: 50%;
}

.si-testimonial-pagination {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0 0px;
  margin-top: 66px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-testimonial-pagination {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .si-testimonial-pagination {
    display: none;
  }
}

.si-testimonial-pagination .swiper-pagination-bullet {
  width: 0;
  height: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--si-common-black);
  display: inline-block;
  opacity: 1;
  font-family: var(--si-ff-body);
}

.si-testimonial-pagination .swiper-pagination-bullet-active {
  color: var(--si-theme-primary);
}

.si-testimonial-pagination .swiper-pagination-bullet-active {
  color: var(--si-theme-primary);
  font-weight: 600;
  transition: 0.5s;
  animation-delay: 100ms;
  position: relative;
}

.si-testimonial-pagination .progress-fill {
  position: absolute;
  left: 52px;
  right: 0;
  top: 58px;
  height: 3px;
  width: 220px;
  background: var(--si-theme-primary);
  transform: translateY(-50%);
  border-radius: 2px;
  width: 0;
  z-index: 1;
}

.si-testimonial-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  left: 52px;
  right: 0;
  top: 18px;
  height: 3px;
  width: 220px;
  background: var(--si-border-1);
  transform: translateY(-50%);
  z-index: 0;
  margin: 0 auto;
}

.si-testimonial-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  margin-right: 260px;
}

.si-testimonial-2-area {
  position: relative;
}

.si-testimonial-2-box {
  padding: 35px 20px 0 20px;
  position: relative;
  z-index: 1;
  transition: 0.6s;
}

.si-testimonial-2-box::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/testimonial/bg.jpg);
  z-index: -1;
  border-radius: 10px;
  transition: 0.6s;
}

.si-testimonial-2-box:hover::before {
  background: url(../img/testimonial/bg2.jpg);
}

.si-testimonial-2-box:hover .si-testimonial-2-star ul li i {
  color: var(--si-common-white);
}

.si-testimonial-2-box:hover .si-testimonial-2-star span {
  color: var(--si-common-gray-4);
}

.si-testimonial-2-box:hover .si-testimonial-2-name h3 {
  color: var(--si-common-white);
}

.si-testimonial-2-box:hover .si-testimonial-2-name span {
  color: var(--si-common-gray-4);
}

.si-testimonial-2-box:hover .si-testimonial-2-text h3 {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(7.5px);
  color: var(--si-common-white);
}

.si-testimonial-2-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.si-testimonial-2-star ul li {
  list-style: none;
  display: inline;
}

.si-testimonial-2-star ul li i {
  color: var(--si-common-black);
  transition: 0.9s;
}

.si-testimonial-2-star span {
  margin-top: 5px;
  display: inline-block;
  color: var(--si-common-text-body);
}

.si-testimonial-2-text {
  margin-top: 17px;
}

.si-testimonial-2-text h3 {
  background: var(--si-common-white);
  display: inline-block;
  padding: 20px 0 19px 18px;
  border-radius: 10px;
  transition: 0.6s;
  font-size: 24px;
}

.si-testimonial-2-main {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 13px;
}

.si-testimonial-2-shape {
  position: relative;
}

.si-testimonial-2-img {
  position: absolute;
  bottom: 25px;
  left: 5px;
}

.si-testimonial-2-img img {
  border-radius: 50%;
}

.si-testimonial-2-name h3 {
  transition: 0.6s;
  color: var(--si-common-black);
}

.si-testimonial-2-name span {
  color: var(--si-common-text-body);
  transition: 0.6s;
}

.si-testimonial-2-shape2 {
  position: absolute;
  right: 5.2%;
  top: 19.2%;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si-testimonial-2-shape2 {
    display: none;
  }
}

.si-testimonial-pagination-2-wrap {
  width: 429px;
  margin: 0 auto;
}

.testimonial-box2 {
  margin-top: 25px;
}

/*----------------------------------------*/
/*  1.8 FAQ css
/*----------------------------------------*/
.si-faq-area {
  padding-top: 350px;
  padding-bottom: 120px;
  margin-top: -200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-faq-area {
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.faq-more {
  margin-top: 0 !important;
  padding-top: 150px !important;
}

/*----------------------------------------*/
/*  1.9 Blog css
/*----------------------------------------*/
.si-blog-area {
  padding-top: 100px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-blog-area {
    padding-top: 70px;
  }
}

.si-blog-area .si-circle-btn-box {
  margin-top: -35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-blog-area .si-circle-btn-box {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .si-blog-area .si-section-title {
    text-align: left;
    padding-bottom: 20px;
  }

  .si-blog-area .si-service-slider {
    margin-top: 0;
  }
}

.si-blog-box .si-product-card__learn-more {
  margin-top: 8px;
}

.si-blog-meta {
  padding-top: 28px;
  padding-bottom: 9px;
  font-size: 18px;
  color: var(--si-common-gray-2);
}

.si-blog-main-title {
  margin-bottom: 10px;
  margin-top: 20px;
}

.si-blog-img {
  overflow: hidden;
}

.si-blog-img img {
  transition: 0.4s;
  transform: scale(1.04);
}

.si-blog-box:hover .si-blog-img img {
  transform: scale(1.04) translateX(8px);
}

.si-blog-shape {
  position: absolute;
  bottom: 5%;
  left: 50px;
}

@media (max-width: 1700px) {
  .si-blog-shape {
    display: none;
  }
}

/* Blog slider cards — white card layout */
.si-blog-area .si-blog-box {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #ececec;
  box-shadow: 0 4px 18px rgba(18, 18, 18, 0.06);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.si-blog-area .si-blog-box:hover {
  box-shadow: 0 10px 28px rgba(18, 18, 18, 0.1);
  transform: translateY(-4px);
}

.si-blog-area .si-blog-img {
  aspect-ratio: 1 / 1;
  border-radius: 12px 12px 0 0;
}

.si-blog-area .si-blog-img a {
  display: block;
  height: 100%;
}

.si-blog-area .si-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;
}

.si-blog-area .si-blog-box:hover .si-blog-img img {
  transform: scale(1.04);
}

.si-blog-area .si-blog-content {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.si-blog-area .si-blog-main-title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.35;
}

.si-blog-area .si-blog-main-title a {
  color: var(--si-common-black);
  text-decoration: none;
  font-weight: 600;
}

.si-blog-area .si-blog-main-title a:hover {
  color: var(--si-theme-primary);
}

.si-blog-area .si-blog-content p {
  color: #666666;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 22px;
  font-weight: var(--si-fw-regular);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.si-blog-area .si-btn-link {
  margin-top: auto;
  align-self: flex-start;
}

.si-blog-area .si-btn-link .btn-text span {
  font-size: 18px;
}

/*----------------------------------------*/
/*  2.0 Client css
/*----------------------------------------*/
.si-client-area {
  padding: 145px 0 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-client-area {
    padding: 50px 0 100px;
  }
}

.si-client-area .si-section-title {
  padding-bottom: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-client-area .si-section-title {
    padding-bottom: 10px !important;
  }
}

.si-client-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--si-common-black);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-client-header {
    display: block;
  }
}

.si-client-img-group {
  padding-top: 50px;
  padding-left: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-client-img-group {
    padding-top: 30px;
    padding-left: 0;
  }
}

.si-client-img-group img {
  border-radius: 50%;
  border: 1px solid var(--si-common-black);
  margin-left: -33px;
  position: relative;
  left: 33px;
}

.si-client-circle {
  display: inline-block;
  width: 80px;
  border-radius: 50%;
  height: 80px;
  background: var(--si-theme-primary);
  color: var(--si-common-white);
  font-size: 30px;
  z-index: 1;
  position: relative;
  text-align: center;
  place-content: center;
  top: 7px;
}

.si-client-counter {
  padding-top: 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .si-client-counter {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.si-client-counter span {
  font-weight: var(--si-fw-bold);
  color: var(--si-common-gray-3);
  line-height: 0.8;
  font-size: 160px;
  font-family: var(--si-ff-body);
}

.si-client-counter span span {
  font-size: 70px;
}

@media (max-width: 767px) {
  .si-client-counter span span {
    font-size: 50px;
  }
}

.si-client-counter h3 {
  margin-top: 5px;
  color: var(--si-common-text-body);
  font-size: 24px;
}

.si-client-wrap {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.si-client-wrap li {
  border: 1px solid var(--si-common-black);
  margin-left: -1px;
  margin-top: -1px;
}

.si-client-wrap li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

@media (max-width: 767px) {
  .si-client-wrap li a {
    padding: 40px 20px;
  }
}

/*----------------------------------------*/
/*  2.1 Marquee css
/*----------------------------------------*/
.si-marquee-item {
  display: flex;
  align-items: center;
  gap: 48px;
}

.si-marquee-item span {
  color: var(--si-common-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 160px;
  line-height: 175px;
  font-weight: 600;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-marquee-item span {
    font-size: 90px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .si-marquee-item span {
    font-size: 50px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-marquee-item img {
    width: 95px;
  }
}

@media (max-width: 767px) {
  .si-marquee-item img {
    width: 75px;
  }
}

.si-marquee-item-2 h1 {
  font-size: 100px;
}

@media (max-width: 767px) {
  .si-marquee-item-2 h1 {
    font-size: 50px;
  }
}

.si-marquee-textstoke {
  color: transparent !important;
  -webkit-text-stroke: 1px var(--si-common-white) !important;
}

.si-marquee-colortext {
  color: var(--si-theme-primary) !important;
  -webkit-text-stroke: 1px #fff !important;
}

.si-marquee-active .swiper-slide {
  width: auto;
  margin: 0 -135px;
}

.si-marquee-active .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.marquee-black {
  color: var(--si-common-black) !important;
}

/*----------------------------------------*/
/*  2.2 Service Details css
/*----------------------------------------*/
.si__service__details__area {
  padding-top: 140px;
  padding-bottom: 110px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__service__details__area {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si__service__details__area {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .si__service__details__area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.si__service__details__text h3 {
  letter-spacing: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si__service__details__text h3 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .si__service__details__text h3 {
    font-size: 22px;
  }
}

.si__service__details__text p {
  margin-top: 25px;
}

@media (max-width: 991px) {
  .si__service__details__text p {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__service__details__text p br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__service__details__text p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .si__service__details__text p br {
    display: none;
  }
}

.si__service__details__right {
  display: flex;
  gap: 29px;
  align-items: center;
  margin-top: 38px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__service__details__right {
    display: block;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__service__details__right {
    display: block;
  }
}

@media (max-width: 991px) {
  .si__service__details__right {
    display: block;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__service__details__list {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__service__details__list {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .si__service__details__list {
    margin-top: 20px;
  }
}

.si__service__details__list h4 {
  margin-bottom: 21px;
}

.si__service__details__list ul li {
  list-style: none;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si__service__details__list ul li {
    font-size: 17px;
    margin-bottom: 14px;
  }
}

@media (max-width: 767px) {
  .si__service__details__list ul li {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

.si__service__details__list ul li svg {
  margin-right: 6px;
}

.si__service__details__heading {
  margin-bottom: 28px;
  margin-top: 39px;
}

@media (max-width: 991px) {
  .si__service__details__heading h3 {
    font-size: 24px;
  }
}

.si__service__details__main {
  display: flex;
  gap: 20px;
}

@media (max-width: 991px) {
  .si__service__details__main {
    display: block;
  }
}

.si__service__details__texttwo h4 svg {
  margin-right: 20px;
}

.si__service__details__texttwo p {
  margin-left: 56px;
}

@media (max-width: 991px) {
  .si__service__details__texttwo p {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__service__details__texttwo p br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__service__details__texttwo p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .si__service__details__texttwo p br {
    display: none;
  }
}

.si__service__details__listtwo {
  margin-top: 17px;
}

.si__service__details__listtwo h3 {
  margin-bottom: 31px;
}

@media (max-width: 991px) {
  .si__service__details__listtwo h3 {
    font-size: 24px;
  }
}

.si__service__details__listtwo ul li {
  list-style: none;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 19px;
}

@media (max-width: 991px) {
  .si__service__details__listtwo ul li {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__service__details__listtwo ul li svg {
    margin-right: 6px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__service__details__listtwo ul li svg {
    margin-right: 6px;
  }
}

@media (max-width: 991px) {
  .si__service__details__listtwo ul li svg {
    margin-right: 6px;
  }
}

.si__service__details__img {
  position: relative;
  margin-top: 47px;
}

.si__service__details__icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  align-content: center;
  text-align: center;
}

.si__service__details__icon a {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #f57e20;
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__service__details__icon a {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__service__details__icon a svg {
    width: 18px;
    height: 18px;
  }
}

.si__service__details__textthree {
  margin-top: 41px;
}

@media (max-width: 991px) {
  .si__service__details__textthree {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__service__details__textthree p br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__service__details__textthree p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .si__service__details__textthree p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .si__service__details__textthree p {
    font-size: 18px;
  }
}

/*----------------------------------------*/
/*  2.3 Team Details css
/*----------------------------------------*/
.si__team__details__area {
  padding-top: 150px;
  padding-bottom: 150px;
}

.si__team__details__box {
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(18, 18, 18, 0.12);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  padding: 19px 41px 19px 18px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si__team__details__box {
    display: block;
    margin-bottom: 25px;
    padding: 19px 19px 19px 18px;
  }
}

.si__team__details__thumb {
  background: #f4edf1;
  padding: 19px 15px 0 15px;
  position: relative;
}

.si__team__details__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0) 44.23%,
    rgba(18, 18, 18, 0.85) 100%
  );
}

.si__team__details__thumb img {
  width: 100%;
}

.si__team__details__text {
  position: absolute;
  bottom: 21px;
  left: 0;
  right: 0;
  text-align: center;
}

.si__team__details__text h2 {
  font-size: 30px;
  line-height: 41px;
  color: var(--si-common-white);
}

.si__team__details__text span {
  color: var(--si-common-gray-4);
}

.si__team__details__address {
  margin-top: 24px;
}

.si__team__details__address ul li {
  font-size: 20px;
  font-weight: 500;
  color: var(--si-common-text-body);
  list-style: none;
  margin-top: 20px;
}

.si__team__details__address ul li span {
  color: var(--si-common-black);
  font-weight: 600;
}

.si__team__details__main {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}

.si__team__details__check img {
  max-width: inherit;
}

.si__team__details__title h2 {
  font-size: 50px;
  line-height: 77px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__team__details__title h2 {
    font-size: 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__team__details__title h2 {
    font-size: 37px;
  }
}

.si__team__details__p span {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color: var(--si-common-gray-2);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__team__details__p span {
    font-size: 19px;
  }
}

.si__team__details__right {
  display: inline-block;
  margin-right: 40px;
}

.si__team__details__maintwo {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-top: 35px;
}

@media (max-width: 991px) {
  .si__team__details__maintwo {
    margin-top: 5px;
  }
}

.si__team__details__img {
  border: 1px solid rgba(18, 18, 18, 0.25);
  border-radius: 10px;
  display: inline-block;
  padding: 10px;
}

.si__team__details__texttwo {
  margin-top: 25.5%;
}

@media (max-width: 991px) {
  .si__team__details__texttwo {
    margin-top: 15px;
  }
}

.si__team__details__texttwo h3 {
  font-size: 50px;
  line-height: 68px;
}

.si__team__details__titletwo {
  margin-top: 14px;
}

.si__team__details__titletwo h3 {
  font-size: 24px;
  line-height: 34px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si__team__details__titletwo h3 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si__team__details__titletwo h3 br {
    display: none;
  }
}

.si__team__details__titletwo a {
  font-size: 18px;
  font-weight: 500;
  margin-top: 6px;
  display: inline-block;
}

.si__team__details__titletwo a span {
  display: inline-block;
  color: var(--si-common-text-body);
  border-bottom: 1px solid var(--si-common-text-body);
}

.si__team__details__titletwo a i {
  margin-left: 6px;
  position: relative;
  top: 3px;
}

.si__team__details__right2 {
  border: 1px solid rgba(1, 1, 65, 0.12);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  background: var(--si-common-white);
  padding: 29px 48px 15px 48px;
  margin-top: 23.8%;
}

@media (max-width: 991px) {
  .si__team__details__right2 {
    margin-top: 47px;
  }
}

.si__team__details__right2 h3 {
  margin-bottom: 19px;
}

.si__team__details__mainthree {
  display: flex;
  align-items: center;
  gap: 20px;
}

.si__team__details__number h2 {
  font-weight: var(--si-fw-bold);
  font-size: 60px;
  color: transparent;
  -webkit-text-stroke: 2px var(--si-theme-primary);
}

.si__team__details__textthree span {
  color: var(--si-common-black);
  font-weight: 500;
  font-size: 18px;
}

.team-top {
  margin-top: 120px !important;
  display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .team-top {
    margin-top: 20px !important;
  }
}

.progress-items {
  margin-bottom: 22px;
}

.progress-items h4 {
  font-weight: 500 !important;
}

.bar-bg {
  height: 20px;
  padding: 1px 0 19px 2px;
  background: var(--si-common-white);
  border: 1px solid rgba(1, 1, 65, 0.25);
}

.bar-bg .color-2 {
  background-color: var(--si-theme-primary) !important;
  height: 18px;
  border: 2px solid var(--si-common-white);
  transition: width 1s linear;
  width: 0%;
}

.bar-bg .progress-bar {
  height: 18px;
  background-color: var(--si-common-black);
  border: 2px solid var(--si-common-white);
  transition: width 1s linear;
  width: 0%;
}

/*----------------------------------------*/
/*  2.4 Portfolio Details css
/*----------------------------------------*/
.si__portfolio__details__area {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 991px) {
  .si__portfolio__details__area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.si__portfolio__details__right {
  display: flex;
  gap: 127px;
  justify-content: center;
  background: #fff;
  padding: 38px 0 38px 0;
  margin-top: -78px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__portfolio__details__right {
    gap: 90px;
    margin-top: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__portfolio__details__right {
    gap: 60px;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .si__portfolio__details__right {
    margin-top: 25px;
    padding: 0;
    display: block;
  }
}

@media (max-width: 991px) {
  .si__portfolio__details__content {
    margin-bottom: 15px;
  }
}

.si__portfolio__details__content h2 {
  font-size: 24px;
  line-height: 34px;
}

.si__portfolio__details__content span {
  font-weight: 500;
  font-size: 18px;
}

.si__portfolio__details__box {
  display: flex;
  justify-content: space-between;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__portfolio__details__box {
    display: block;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__portfolio__details__box {
    display: block;
  }
}

@media (max-width: 991px) {
  .si__portfolio__details__box {
    display: block;
  }
}

.si__portfolio__details__text {
  margin-top: 27px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__portfolio__details__text p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .si__portfolio__details__text p br {
    display: none;
  }
}

.si__portfolio__details__text span {
  font-size: 20px;
  color: var(--si-common-black);
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 22px;
}

.si__portfolio__details__list {
  margin-top: 26px;
}

.si__portfolio__details__list ul li {
  list-style: none;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--si-common-black);
}

.si__portfolio__details__list ul li img {
  margin-right: 7px;
}

.si__portfolio__details__list p {
  margin-top: 33px;
}

@media (max-width: 991px) {
  .si__portfolio__details__list p br {
    display: none;
  }
}

.si__portfolio__details__button {
  background: var(--si-common-surface);
  border: 1px solid rgba(18, 18, 18, 0.25);
  padding: 9px 9px 9px 9px;
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__portfolio__details__button {
    display: block;
  }
}

.si__portfolio__details__previous a {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color: var(--si-common-black);
  background: var(--si-common-white);
  padding: 14px 30px 14px 9px;
  border: 1px solid rgba(18, 18, 18, 0.25);
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__portfolio__details__previous a {
    width: 100%;
    text-align: center;
  }
}

.si__portfolio__details__previous a i {
  color: var(--si-common-white);
  background: var(--si-common-black);
  padding: 14px 28px 14px 28px;
  margin-right: 15px;
  transition: 0.6s;
}

.si__portfolio__details__previous a i:hover {
  background: var(--si-theme-primary);
}

.next a {
  padding: 14px 0px 14px 74px;
}

.next a i {
  margin-right: 9px;
  margin-left: 15px;
}

/*----------------------------------------*/
/*  2.5 Contact css
/*----------------------------------------*/
.si__contact__area {
  padding-top: 160px;
  padding-bottom: 160px;
}

@media (max-width: 991px) {
  .si__contact__area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.si__contact__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .si__contact__main {
    display: block;
  }
}

.si__contact__main2 {
  position: relative;
  margin-left: 115px;
  left: 87px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .si__contact__main2 {
    left: 35px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .si__contact__main2 {
    left: 10px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__contact__main2 {
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .si__contact__main2 {
    margin-bottom: 20px;
  }
}

@media (max-width: 1400px) {
  .si__contact__main2 {
    left: 0;
    margin-left: 0;
  }
}

.si__contact__text span {
  font-size: 18px;
  font-weight: 500;
  padding: 6px 16px 6px 16px;
  border: 1px solid var(--si-border-2);
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 3px;
}

.si__contact__text h1 {
  font-size: 65px;
  line-height: 85px;
  font-weight: var(--si-fw-bold);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__contact__text h1 {
    font-size: 51px;
    line-height: 75px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__contact__text h1 {
    font-size: 37px;
    line-height: 50px;
    margin-top: 11px;
  }
}

@media (max-width: 991px) {
  .si__contact__text h1 {
    font-size: 50px;
    line-height: 70px;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .si__contact__text h1 {
    font-size: 45px;
    line-height: 60px;
  }
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si__contact__text h1 {
    font-size: 29px;
    line-height: 45px;
  }
}

@media (max-width: 991px) {
  .si__contact__p p {
    font-size: 18px;
    margin-top: 17px;
  }
}

@media (max-width: 991px) {
  .si__contact__p p br {
    display: none;
  }
}

.si__contact__box {
  width: 100%;
  margin-bottom: 32px;
}

.si__contact__box input {
  background: transparent;
  border-bottom: 1px solid #000;
  padding-left: 0;
  padding-right: 0;
}

.si__contact__box input::placeholder {
  font-size: 18px;
  font-weight: 500;
  border: none;
}

.si__contact__box input:focus {
  border-bottom: 1px solid #000;
  outline: 0;
  box-shadow: none;
}

.si__contact__msg {
  width: 100%;
}

.si__contact__msg textarea {
  background: transparent;
  border-bottom: 1px solid #000;
  padding-left: 0;
  padding-right: 0;
  height: 119px;
}

.si__contact__msg textarea::placeholder {
  font-size: 18px;
  font-weight: 500;
  border: none;
}

.si__contact__msg textarea:focus {
  border-bottom: 1px solid #000;
  outline: 0;
  box-shadow: none;
}

.si__contact__img {
  position: relative;
  margin-left: 16%;
  margin-top: 19px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__contact__img {
    margin-left: 10%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__contact__img {
    margin-left: 0%;
  }
}

@media (max-width: 991px) {
  .si__contact__img {
    margin-left: 0%;
  }
}

.si__contact__right {
  display: flex;
  gap: 21px;
  margin-top: 69%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si__contact__right {
    margin-top: 45%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si__contact__right {
    margin-top: 43%;
  }
}

.si__contact__icon {
  position: absolute;
  top: 20px;
  left: 31px;
}

.si__contact__icon span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-top: 13px;
}

.si__contact__title h2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}

.si__contact__list ul li {
  list-style: none;
  display: inline;
  margin-right: 12px;
}

.si__contact__btn {
  margin-top: 10px;
}

.si__contact__thumb {
  text-align: right;
}

.contact-top {
  margin-top: 53px;
}

@media (max-width: 991px) {
  .contact-top {
    margin-top: 15px;
  }
}

.si-select {
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  border-bottom: 1px solid #000;
  padding-bottom: 18px;
  border-top: none;
  border-left: none;
  border-right: none;
}

.si-select-2:focus {
  border: none;
}

.si-select-2 {
  background: var(--si-common-white);
  font-weight: 600;
  border: none;
  padding: 17px 0 17px 20px;
  border-radius: 10px;
}

.select-border {
  margin-top: 16px;
}

.contact-2-area {
  padding-top: 85px;
  padding-bottom: 0px;
}

.Contact-box2 {
  margin-top: 0;
  margin-bottom: 21px;
}

.Contact-box2 input {
  background: var(--si-common-white) !important;
  border-bottom: none;
  padding-left: 20px;
  border-radius: 10px;
}

.Contact-box2 input::placeholder {
  font-weight: 600;
}

.Contact-box2 input:focus {
  border-bottom: none;
}

.Contact-box2 textarea {
  background: var(--si-common-white) !important;
  border-bottom: none;
  padding-left: 20px;
  border-radius: 10px;
  height: 150px;
}

.Contact-box2 textarea::placeholder {
  font-weight: 600;
}

.Contact-box2 textarea:focus {
  border-bottom: none;
}

.si-select-2 {
  background: var(--si-common-white) !important;
}

.map__wrap iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px;
}

/*----------------------------------------*/
/*  2.6 Work Process css
/*----------------------------------------*/
.si-process-box {
  position: relative;
  background: #fff;
  padding: 30px;
  overflow: hidden;
  border-radius: 15px;
  z-index: 1;
}

@media (max-width: 991px) {
  .si-process-box {
    margin-bottom: 30px;
  }
}

.si-process-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: url(../img/process/box-bg.jpg);
  z-index: -1;
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
}

.si-process-box:hover::before {
  height: 100%;
}

.si-process-box-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 38px;
  background: var(--si-border-10);
}

.si-process-box-wrapper::before {
  inset: calc(100% - 2em) 0 0 -1em;
  border-bottom-right-radius: 1.15em;
  box-shadow: 0.3em 0.3em 0 0.2em var(--si-border-10);
  transition: 1s ease;
  position: absolute;
  content: "";
  width: 1.25em;
  height: 1.56em;
  background: transparent;
  transform: rotate(-44deg);
}

.si-process-box-wrapper::after {
  inset: 0.1em 0 0 1.2em;
  border-bottom-right-radius: 1.25em;
  box-shadow: 0.3em 0.3em 0 0.2em var(--si-border-10);
  transition: 1s ease;
  position: absolute;
  content: "";
  width: 1.25em;
  height: 1.6em;
  background: transparent;
  transform: rotate(140deg);
}

.si-process-text {
  display: flex;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  background: var(--si-common-white);
  border: 8px solid var(--si-border-10);
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
}

.si-process-number {
  font-weight: 600;
  font-size: 30px;
  color: var(--si-common-black);
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
}

.si-process-content h3 {
  padding: 32px 0 12px;
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
}

@media (max-width: 1399px) {
  .si-process-content h3 {
    font-size: 25px;
  }
}

.si-process-content P {
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
}

.si-process-list {
  display: inline-grid;
  text-align: left;
  padding-top: 12px;
}

.si-process-list span i {
  margin-right: 10px;
  font-family: sans-serif;
}

.si-process-list span {
  display: block;
  font-weight: 500;
  color: var(--si-common-black);
  font-size: 17px;
  padding-bottom: 10px;
  -webkit-transition: 0.3s 0.3s ease-in-out;
  -moz-transition: 0.3s 0.3s ease-in-out;
  -ms-transition: 0.3s 0.3s ease-in-out;
  -o-transition: 0.3s 0.3s ease-in-out;
  transition: 0.3s 0.3s ease-in-out;
}

.si-process-box:hover .si-process-text {
  background: var(--si-theme-primary);
}

.si-process-box:hover .si-process-number,
.si-process-box:hover .si-process-content h3,
.si-process-box:hover .si-process-content p,
.si-process-box:hover .si-process-list span {
  color: var(--si-common-white);
}

.si-process-shape {
  display: flex;
  justify-content: center;
}

@media (max-width: 1399px) {
  .si-process-shape {
    display: none;
  }
}

.si-process-area .color2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 38px;
  background: #f7f6fb !important;
}

.si-process-area .color2::before {
  inset: calc(100% - 2em) 0 0 -1em;
  border-bottom-right-radius: 1.15em;
  box-shadow: 0.3em 0.3em 0 0.2em #f7f6fb;
  transition: 1s ease;
  position: absolute;
  content: "";
  width: 1.25em;
  height: 1.56em;
  background: transparent;
  transform: rotate(-44deg);
}

.si-process-area .color2::after {
  inset: 0.1em 0 0 1.2em;
  border-bottom-right-radius: 1.25em;
  box-shadow: 0.3em 0.3em 0 0.2em #f7f6fb;
  transition: 1s ease;
  position: absolute;
  content: "";
  width: 1.25em;
  height: 1.6em;
  background: transparent;
  transform: rotate(140deg);
}

.si-process-area .common-color2 {
  border-color: #f7f6fb;
}

.si-process-area .color3 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 38px;
  background: #f9f9f9 !important;
}

.si-process-area .color3::before {
  inset: calc(100% - 2em) 0 0 -1em;
  border-bottom-right-radius: 1.15em;
  box-shadow: 0.3em 0.3em 0 0.2em #f9f9f9;
  transition: 1s ease;
  position: absolute;
  content: "";
  width: 1.25em;
  height: 1.56em;
  background: transparent;
  transform: rotate(-44deg);
}

.si-process-area .color3::after {
  inset: 0.1em 0 0 1.2em;
  border-bottom-right-radius: 1.25em;
  box-shadow: 0.3em 0.3em 0 0.2em #f9f9f9;
  transition: 1s ease;
  position: absolute;
  content: "";
  width: 1.25em;
  height: 1.6em;
  background: transparent;
  transform: rotate(140deg);
}

.si-process-area .common-color3 {
  border-color: #f9f9f9;
}

.si-process-shape-2 {
  position: absolute;
  top: 13%;
  left: 30px;
  -webkit-animation: transform 5s infinite linear;
  animation: transform 5s infinite linear;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si-process-shape-2 {
    display: none;
  }
}

/*----------------------------------------*/
/*  2.7 Choose Us css
/*----------------------------------------*/
.si-why-choose-us-box {
  margin-left: 0;
  position: relative;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si-why-choose-us-box {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si-why-choose-us-box {
    margin-top: 30px;
  }
}

.si-why-choose-us-border {
  position: absolute;
  bottom: 38px;
  left: 45px;
}

@media (max-width: 1400px) {
  .si-why-choose-us-border {
    display: none;
  }
}

.si-why-choose-us-main {
  display: flex;
  gap: 41px;
  position: relative;
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si-why-choose-us-main {
    display: block;
  }
}

.si-why-choose-us-main:last-child::before {
  display: none;
}

.si-why-choose-us-main:hover .si-why-choose-us-icon a svg {
  fill: var(--si-theme-primary);
}

.si-why-choose-us-icon a {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  background: var(--si-common-white);
}

.si-why-choose-us-icon a svg {
  fill: var(--si-common-black);
  transition: 0.6s;
}

.si-why-choose-us-icon span {
  position: absolute;
  left: 0;
}

.si-why-choose-us-icon span svg {
  stroke: var(--si-common-black);
  stroke-dasharray: 5;
  stroke-width: 1;
  fill: none;
}

.si-why-choose-us-text {
  margin-top: -10px;
}

@media only screen and (min-width: 350px) and (max-width: 575px) {
  .si-why-choose-us-text {
    margin-top: 20px;
  }
}

.si-why-choose-us-text h3 {
  margin-bottom: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-why-choose-us-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-why-choose-us-text p br {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-why-choose-us-text p {
    font-size: 18px;
  }
}

.why-choose-us-title {
  padding-bottom: 41px !important;
}

.dashed-line path {
  stroke: #121212;
  stroke-dasharray: 5 5;
}

/*----------------------------------------*/
/*  2.8 Pricing CSS
/*----------------------------------------*/
.si-pricing-area {
  position: relative;
}

.si-pricing-button span {
  font-weight: 600;
  font-size: 18px;
  background: var(--si-common-white);
  color: var(--si-common-black);
  padding: 25px 40px 24px 41px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .si-pricing-button span {
    padding: 17px 25px 17px 25px;
  }
}

.si-pricing-number-1 {
  font-weight: 500;
  font-size: 18px;
  color: var(--si-common-text-body);
  font-family: var(--si-ff-body);
  margin-right: 8px;
}

.si-pricing-number-2 {
  font-weight: 600;
  font-size: 80px;
  margin-left: -15px;
}

@media (max-width: 991px) {
  .si-pricing-number-2 {
    font-size: 55px;
  }
}

.si-pricing-number h2 strong {
  font-weight: 500;
  font-size: 18px;
  color: var(--si-common-text-body);
  font-family: var(--si-ff-body);
  margin-left: -12px;
}

.si-pricing-number h3 {
  display: inline-block;
  color: var(--si-theme-primary);
  border: 1px solid rgba(18, 18, 18, 0.15);
  border-radius: 10px;
  padding: 8px 35px 12px 35px;
  margin-top: -15px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si-pricing-number h3 {
    margin-top: 11px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si-pricing-number h3 {
    padding: 5px 17px 7px 17px;
  }
}

.si-pricing-number a {
  display: block;
  margin-top: 46px;
}

@media (max-width: 1600px) {
  .si-pricing-number a {
    display: none;
  }
}

.si-pricing-right {
  display: flex;
  align-items: center;
  gap: 91px;
  background: var(--si-common-white);
  padding: 24px 0 32px 51px;
  margin-left: -44px;
  width: 100%;
}

@media (max-width: 1600px) {
  .si-pricing-right {
    display: block;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si-pricing-right {
    margin-left: 0px;
  }
}

@media (max-width: 991px) {
  .si-pricing-right {
    margin-top: 45px;
  }
}

@media (max-width: 767px) {
  .si-pricing-right {
    padding: 21px 0 21px 10px;
  }
}

.si-pricing-list {
  display: inline-block;
  margin-left: 15px;
  margin-top: 18px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .si-pricing-list {
    margin-left: -20px;
  }
}

.si-pricing-list ul li {
  font-weight: 600;
  font-size: 18px;
  list-style: none;
  margin-bottom: 29px;
  position: relative;
}

.si-pricing-list ul li img {
  margin-right: 17px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 991px) {
  .si-pricing-list ul li {
    margin-bottom: 15px;
  }
}

.si-pricing-list-color2 {
  color: var(--si-common-gray-2);
}

.si-pricing-list ul li::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -16px;
  width: 320px;
  height: 1px;
  background: var(--si-border-7);
}

@media (max-width: 1600px) {
  .si-pricing-list ul li::before {
    display: none;
  }
}

.si-pricing-list ul li:last-child::before {
  display: none;
}

.si-pricing-shape {
  position: absolute;
  bottom: 8.3%;
  left: 26.6%;
}

@media (max-width: 1500px) {
  .si-pricing-shape {
    display: none;
  }
}

.si-pricing-shape2 {
  position: absolute;
  bottom: 50%;
  left: 0;
}

@media (max-width: 1800px) {
  .si-pricing-shape2 {
    display: none;
  }
}

.si-list-2 {
  margin-left: 33px;
}

.tab-btn .annual_tab_title .active .si-list-2 {
  margin-left: 0px;
}

.si-right-2 {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .si-right-2 {
    transform: scale(1);
  }
}

.si-number-2 h2 {
  color: var(--si-common-white);
}

.si-number-2 h2 .si-pricing-number-1 {
  color: var(--si-common-white);
}

.si-number-2 h2 strong {
  color: var(--si-common-white);
}

.si-number-2 h3 {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(7.5px);
  color: var(--si-common-white);
  font-size: 24px;
}

.si-list-color ul li {
  color: var(--si-common-white);
}

.si-list-color .si-pricing-list-color2 {
  color: var(--si-common-gray-2);
}

.si-pricing-number .tab-annual-price {
  display: none;
}

.si-pricing-number .change-subs-duration .tab-annual-price {
  display: flex;
}

.si-pricing-number.change-subs-duration .tab-monthly-price {
  display: none;
}

.si-pricing-button .pricing-tab-switcher.active::before {
  left: calc(100% - 28px);
}

.si-pricing-button .pricing-tab-switcher::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 26px;
  border-radius: 50%;
  background: var(--si-common-white);
  transition: 0.3s;
}

.si-pricing-button .pricing-tab-switcher.active::before {
  left: calc(100% - 28px);
}

.tab-btn {
  cursor: pointer;
}

.tab-btn.active {
  color: var(--si-common-white);
  background: var(--si-theme-primary);
}

/*----------------------------------------*/
/*  2.9 Video css
/*----------------------------------------*/
.si-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.si-video-bg {
  height: 752px;
  overflow: hidden;
  position: relative;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px) {
  .si-video-bg {
    height: 600px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .si-video-bg {
    height: 500px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-video-bg {
    height: 450px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-video-bg {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .si-video-bg {
    height: 300px;
  }
}

.si-video-play {
  color: var(--si-common-white);
  font-size: 30px;
  width: 220px;
  height: 220px;
  line-height: 220px;
  background: rgba(18, 18, 18, 0.5);
  backdrop-filter: blur(10px);
  text-align: center;
  border-radius: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-video-play {
    display: none;
  }
}

@media (max-width: 767px) {
  .si-video-play {
    display: none;
  }
}

.si-video-play a {
  z-index: 1;
}

.si-video-text {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*----------------------------------------*/
/*  Demo Banner CSS
/*----------------------------------------*/
.si-demo-banner {
  background-color: white !important;
  padding: 80px 0;
  margin-bottom: 50px;
  width: 80%;
  border-radius: 20px;
  box-shadow: 2px 2px 15px 0px rgba(128, 128, 128, 0.5);
}

.si-demo-banner .si__blog__sidebar__call h4 {
  color: var(--si-common-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-demo-banner .si__blog__sidebar__call h4 {
    font-size: 26px;
  }
}

.si-demo-banner .si__blog__sidebar__call p {
  color: var(--si-common-gray);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .si-demo-banner {
    padding: 40px 20px;
    margin-bottom: 50px;
  }

  .si-demo-banner .container {
    text-align: center;
  }

  .si-demo-banner .si__blog__sidebar__call h4 {
    font-size: 24px;
  }

  .si-demo-banner .si__blog__sidebar__call p {
    font-size: 16px;
  }

  .si-demo-banner .col-md-8,
  .si-demo-banner .col-md-4 {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .si-demo-banner .col-md-8 {
    margin-bottom: 30px;
  }

  .si-demo-banner .col-md-4 {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=main.css.map */

/* Section BG */
.section-bg {
  background-color: #f7f8fb !important;
}

/* Key Features Section */
.feature-card {
  background-color: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 126, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card-icon i {
  color: #f57e20;
  font-size: 20px;
  transition: color 0.3s ease;
}

.feature-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature-card:hover .feature-card-icon {
  background: #f57e20;
}

.feature-card:hover .feature-card-icon i {
  color: #ffffff;
}

.feature-card h5 {
  font-size: var(--htech-fs-card-title);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--si-common-black);
  line-height: 1.4;
}

.feature-card p {
  font-size: var(--htech-fs-card-desc);
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Tablet (768px - 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-card {
    padding: 22px 20px;
  }

  .feature-card h5 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 14px;
  }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
  .feature-card {
    padding: 20px 18px;
  }

  .feature-card h5 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .feature-card-icon {
    margin-bottom: 12px;
  }
}

/* Key Features heading */
.section-bg .text-center h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-bg .text-center h3 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .section-bg .text-center h3 {
    font-size: 22px;
  }

  .section-bg.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 480px) {
  .section-bg .text-center h3 {
    font-size: 20px;
  }
}

/* ---------------------------------------- */
/* Sidebar responsive - mobile top spacing  */
/* ---------------------------------------- */
@media (max-width: 991px) {
  .si__blog__sidebar__boxtwo {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .si__blog__sidebar__boxtwo {
    margin-top: 30px;
  }

  .si__blog__sidebar__services {
    padding: 20px 18px 16px 18px;
  }

  .si__blog__sidebar__services h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

/* ---------------------------------------- */
/* Service details box mobile spacing       */
/* ---------------------------------------- */
@media (max-width: 767px) {
  .si__service__details__box {
    margin-bottom: 30px;
  }

  .si__service__details__list h4 {
    font-size: 18px;
  }

  .si__service__details__text p {
    font-size: 15px;
    margin-top: 14px;
  }
}

/* ---------------------------------------- */
/* Demo banner tablet fix                   */
/* ---------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-demo-banner {
    padding: 50px 20px;
  }

  .si-demo-banner .si__blog__sidebar__call h4 {
    font-size: 22px;
  }
}

/* ---------------------------------------- */
/* Footer widget title mobile               */
/* ---------------------------------------- */
@media (max-width: 767px) {
  .si-footer-widget-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  .si-footer-widget-content p {
    font-size: 15px;
  }

  .si-footer-widget-menu ul li a {
    font-size: 15px;
  }
}

/*----------------------------------------*/
/*  Unified Responsive Logo System (Navbar, Footer, Offcanvas)
/*----------------------------------------*/
.si-header-logo img,
.si-footer-logo img,
.si-footer-logo-2 img,
.si-footer-brand-bar .si-footer-logo-2 img,
.si-offcanvas-logo img {
  width: clamp(125px, 11vw, 167px) !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain;
}

@media (min-width: 1400px) {
  .si-header-logo img,
  .si-footer-logo img,
  .si-footer-logo-2 img,
  .si-footer-brand-bar .si-footer-logo-2 img,
  .si-offcanvas-logo img {
    width: 167px !important;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .si-header-logo img,
  .si-footer-logo img,
  .si-footer-logo-2 img,
  .si-footer-brand-bar .si-footer-logo-2 img,
  .si-offcanvas-logo img {
    width: 150px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .si-header-logo img,
  .si-footer-logo img,
  .si-footer-logo-2 img,
  .si-footer-brand-bar .si-footer-logo-2 img,
  .si-offcanvas-logo img {
    width: 140px !important;
  }
}

@media (max-width: 767px) {
  .si-header-logo img,
  .si-footer-logo img,
  .si-footer-logo-2 img,
  .si-footer-brand-bar .si-footer-logo-2 img,
  .si-offcanvas-logo img {
    width: 125px !important;
  }
}

/*----------------------------------------*/
/*  Footer V2 — index.html reference layout
/*----------------------------------------*/
.si-footer-v2 {
  --footer-v2-space-xs: clamp(8px, 1vw, 12px);
  --footer-v2-space-sm: clamp(12px, 1.5vw, 16px);
  --footer-v2-space-md: clamp(20px, 2.5vw, 28px);
  --footer-v2-space-lg: clamp(32px, 4vw, 48px);
  --footer-v2-space-xl: clamp(44px, 5.5vw, 64px);
  --footer-v2-text-xs: clamp(13px, 0.9vw, 14px);
  --footer-v2-text-sm: clamp(14px, 1vw, 15px);
  --footer-v2-text-base: clamp(15px, 1.15vw, 17px);
  --footer-v2-text-md: clamp(16px, 1.25vw, 18px);
  --footer-v2-text-lg: clamp(17px, 1.35vw, 19px);
  --footer-v2-title-size: clamp(14px, 1.05vw, 16px);
  --footer-v2-text-muted: rgba(255, 255, 255, 0.72);
  --footer-v2-text-body: rgba(255, 255, 255, 0.82);
  --footer-v2-text-bright: rgba(255, 255, 255, 0.88);
  --footer-v2-border: rgba(255, 255, 255, 0.1);
  background-color: #0a0a0a !important;
  padding-top: var(--footer-v2-space-xl) !important;
  padding-bottom: clamp(16px, 2vw, 24px) !important;
}

.si-footer-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
}

.si-footer-v2 > .container {
  position: relative;
  z-index: 1;
}

/* Brand row */
.si-footer-brand-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding-bottom: var(--footer-v2-space-lg);
  margin-bottom: 0;
  border-bottom: 1px solid var(--footer-v2-border);
}

.si-footer-brand-bar .si-footer-logo-2 {
  flex-shrink: 0;
  margin: 0;
}

.si-footer-brand-bar .si-footer-logo-2 img {
  width: clamp(130px, 11vw, 167px);
  height: auto;
}

.si-footer-brand-text {
  justify-self: end;
  width: 100%;
  max-width: min(560px, 100%);
  color: var(--footer-v2-text-bright);
  font-size: var(--footer-v2-text-lg);
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin: 0;
  text-align: left;
}

/* Column grid */
.si-footer-columns {
  --bs-gutter-x: clamp(20px, 3vw, 36px);
  --bs-gutter-y: var(--footer-v2-space-lg);
  padding-top: var(--footer-v2-space-lg);
}

.si-footer-v2 .si-footer-col-1,
.si-footer-v2 .si-footer-col-2,
.si-footer-v2 .si-footer-col-3,
.si-footer-v2 .si-footer-col-4 {
  margin-left: 0;
  max-width: none;
  padding-bottom: 0;
}

/* Contact column */
.si-footer-v2 .si-footer-contact-block {
  padding-top: 0;
}

.si-footer-contact-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.si-footer-contact-block ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--footer-v2-space-sm);
  margin-bottom: var(--footer-v2-space-md);
}

.si-footer-contact-block ul li:last-child {
  margin-bottom: 0;
}

.si-footer-contact-icon {
  flex-shrink: 0;
  width: 20px;
  margin-top: 3px;
  color: var(--si-theme-primary);
  font-size: var(--footer-v2-text-md);
  line-height: 1.5;
  text-align: center;
}

.si-footer-contact-block ul li a,
.si-footer-contact-block ul li span {
  color: var(--footer-v2-text-body);
  font-size: var(--footer-v2-text-base);
  line-height: 1.65;
  transition: color 0.3s ease;
}

.si-footer-contact-block ul li a:hover {
  color: var(--si-theme-primary);
}

/* Section titles */
.si-footer-v2-title {
  color: var(--si-theme-primary);
  font-family: var(--si-ff-heading);
  font-size: var(--footer-v2-title-size);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 var(--footer-v2-space-md);
  position: relative;
  padding-bottom: var(--footer-v2-space-sm);
  line-height: 1.3;
}

.si-footer-v2-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--si-theme-primary);
}

/* Link lists */
.si-footer-v2-menu ul {
  margin: 0;
  padding: 0;
}

.si-footer-v2-menu ul li {
  padding-bottom: 10px;
}

.si-footer-v2-menu ul li:last-child {
  padding-bottom: 0;
}

.si-footer-v2-menu ul li a {
  display: inline-block;
  color: var(--footer-v2-text-muted);
  font-size: var(--footer-v2-text-base);
  line-height: 1.55;
  transition: color 0.3s ease;
}

.si-footer-v2-menu ul li a:hover {
  color: var(--si-theme-primary);
}

/* Bottom bar */
.si-footer-bottom-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: var(--footer-v2-space-md);
  margin-top: var(--footer-v2-space-xl);
  padding: var(--footer-v2-space-md) 0 var(--footer-v2-space-sm);
  border-top: 1px solid var(--footer-v2-border);
}

.si-footer-copyright {
  justify-self: start;
  text-align: left;
  font-size: var(--footer-v2-text-sm);
  line-height: 1.5;
  color: var(--footer-v2-text-muted);
  width: 100%;
}

.si-footer-legal {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: var(--footer-v2-space-sm);
}

.si-footer-legal a {
  color: var(--footer-v2-text-muted);
  font-size: var(--footer-v2-text-sm);
  line-height: 1.5;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.si-footer-legal a:hover {
  color: var(--si-theme-primary);
}

.si-footer-legal-divider {
  color: rgba(255, 255, 255, 0.28);
  font-size: var(--footer-v2-text-xs);
  line-height: 1;
}

.si-footer-social {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.si-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 3vw, 38px);
  height: clamp(34px, 3vw, 38px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--footer-v2-text-bright);
  font-size: var(--footer-v2-text-sm);
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.si-footer-social a:hover {
  border-color: var(--si-theme-primary);
  color: var(--si-theme-primary);
  background: rgba(245, 126, 32, 0.08);
}

/* Large desktop */
@media only screen and (min-width: 1400px) {
  .si-footer-brand-text {
    max-width: 600px;
  }
}

/* Laptop */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .si-footer-brand-text {
    max-width: 440px;
  }

  .si-footer-columns {
    --bs-gutter-x: 24px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .si-footer-brand-bar {
    grid-template-columns: 1fr;
    gap: var(--footer-v2-space-md);
    padding-bottom: var(--footer-v2-space-md);
  }

  .si-footer-brand-text {
    justify-self: stretch;
    max-width: 100%;
    text-align: left;
    font-size: var(--footer-v2-text-md);
  }

  .si-footer-columns {
    --bs-gutter-y: clamp(28px, 4vw, 36px);
    padding-top: var(--footer-v2-space-md);
  }

  .si-footer-v2 .si-footer-contact-block {
    padding-top: 0;
  }

  .si-footer-v2-title {
    margin-bottom: var(--footer-v2-space-sm);
  }

  .si-footer-bottom-bar {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    margin-top: var(--footer-v2-space-lg);
    gap: var(--footer-v2-space-sm);
  }

  .si-footer-copyright,
  .si-footer-legal,
  .si-footer-social {
    justify-self: start;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .si-footer-v2 {
    padding-top: clamp(48px, 12vw, 60px) !important;
  }

  .si-footer-brand-text {
    font-size: var(--footer-v2-text-base);
    line-height: 1.65;
  }

  .si-footer-columns {
    --bs-gutter-y: 28px;
    padding-top: var(--footer-v2-space-md);
  }

  .si-footer-contact-block ul li {
    margin-bottom: var(--footer-v2-space-sm);
  }

  .si-footer-v2-menu ul li {
    padding-bottom: 8px;
  }

  .si-footer-bottom-bar {
    margin-top: var(--footer-v2-space-md);
    padding-top: var(--footer-v2-space-md);
  }

  .si-footer-copyright {
    font-size: var(--footer-v2-text-xs);
    max-width: 100%;
    text-align: left;
  }

  .si-footer-legal a {
    font-size: var(--footer-v2-text-xs);
  }

  .si-footer-social {
    gap: 8px;
  }

  .si-footer-social a {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

/* Small mobile */
@media (max-width: 479px) {
  .si-footer-legal {
    flex-direction: column;
    gap: 6px;
  }

  .si-footer-legal-divider {
    display: none;
  }
}

/*----------------------------------------*/
/*  Submit Button (.submit-btn)
/*----------------------------------------*/
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ---------------------------------------- */
/*  Location Cards CSS                       */
/* ---------------------------------------- */
.si__location__cards__area {
  /* padding-top: 80px; */
}

.si__location__card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 24px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.si__location__card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

.si__location__card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.si__location__card__icon {
  width: 46px;
  height: 46px;
  background: var(--si-theme-primary, #0a0a0a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.si__location__card__icon i {
  color: #fff;
  font-size: 18px;
}

.si__location__card__title {
  font-size: 20px;
  font-weight: 700;
  color: #121212;
  margin: 0;
  line-height: 1.3;
}

.si__location__card__body {
  flex: 1;
}

.si__location__card__address {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.si__location__card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.si__location__card__info span {
  font-size: 20px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.si__location__card__info span i {
  color: var(--si-theme-primary, #0a0a0a);
  font-size: 13px;
  width: 15px;
  flex-shrink: 0;
}

/* Location card button — compact explore style (base sizing in button section) */
.si__location__card .si__contact__btn a {
  flex-wrap: nowrap;
}

/* Responsive */
@media (max-width: 991px) {
  .si__location__cards__area {
    padding-top: 50px;
  }

  .si__location__card {
    padding: 20px 22px 18px;
  }

  .si__location__card__title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .si__location__cards__area {
    padding-top: 40px;
  }

  .si__location__card {
    padding: 18px 18px 16px;
    gap: 12px;
  }

  .si__location__card__title {
    font-size: 17px;
  }

  .si__location__card__address {
    font-size: 14px;
  }

  .si__location__card__info span {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .si__location__card {
    padding: 16px 16px 14px;
  }

  .si__location__card__icon {
    width: 40px;
    height: 40px;
  }

  .si__location__card__icon i {
    font-size: 16px;
  }

  .si__location__card__title {
    font-size: 16px;
  }
}

/* Sidebar product list — make entire box clickable */
a.si__blog__sidebar__talha {
  display: flex;
  text-decoration: none;
  color: inherit;
}

/* =========================================
   Products Page — Static Grid Layout
   (replaces the slider on products.html)
   ========================================= */

/* Make grid columns stretch so cards have equal height */
.si-service-area .row > [class*="col-"] {
  display: flex;
}

/* Ensure cards inside grid fill the column height */
.si-service-area .row > [class*="col-"] .si-product-card {
  width: 100%;
}

/* Add spacing between rows on products grid */
.si-service-area .row.g-4 {
  row-gap: 2rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .si-service-area .row.g-4 {
    row-gap: 1.5rem;
  }
}

/* =========================================
   HTECH Blog Detail Pages
   Pages/Blogs/*.html
   ========================================= */

.htech-blog-detail {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 45%);
}

.htech-blog-article {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(18, 18, 18, 0.06);
}

.htech-blog-hero {
  position: relative;
  overflow: hidden;
}

.htech-blog-hero img {
  width: 100%;
  min-height: 340px;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.htech-blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.05) 0%,
    rgba(18, 18, 18, 0.72) 100%
  );
}

.htech-blog-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 36px;
  color: #fff;
}

.htech-blog-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 126, 32, 0.22);
  border: 1px solid rgba(245, 126, 32, 0.45);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.htech-blog-hero__content h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 0;
  max-width: 760px;
}

.htech-blog-body {
  padding: 36px 36px 42px;
}

.htech-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid #ececec;
}

.htech-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #878c8f;
  font-size: 15px;
  font-weight: 500;
}

.htech-blog-meta i {
  color: #f57e20;
  font-size: 14px;
}

.htech-blog-lead {
  font-size: var(--htech-fs-lead);
  line-height: 1.75;
  color: #554d4d;
  margin-bottom: 34px;
}

.htech-blog-section {
  margin-bottom: 36px;
}

.htech-blog-section__title {
  font-size: clamp(1.125rem, 1.5vw + 0.75rem, 1.5rem);
  margin-bottom: 10px;
  color: #121212;
}

.htech-blog-section__subtitle {
  color: #878c8f;
  margin-bottom: 22px;
  font-size: var(--htech-fs-content);
  line-height: 1.65;
}

.htech-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.htech-blog-card {
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 22px 22px 20px;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.htech-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 126, 32, 0.45);
  box-shadow: 0 14px 30px rgba(245, 126, 32, 0.12);
}

.htech-blog-card--challenge {
  background: #fff;
}

.htech-blog-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 126, 32, 0.14);
  color: #f57e20;
  margin-bottom: 14px;
  font-size: 18px;
}

.htech-blog-card h5 {
  font-size: var(--htech-fs-card-title);
  margin-bottom: 8px;
  color: #121212;
}

.htech-blog-card p {
  margin-bottom: 0;
  color: #554d4d;
  line-height: 1.65;
  font-size: var(--htech-fs-card-desc);
}

.htech-blog-list-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 26px;
  height: 100%;
}

.htech-blog-list-card h4 {
  font-size: 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.htech-blog-list-card h4 i {
  color: #f57e20;
}

.htech-blog-list-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.htech-blog-list-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed #e4e4e4;
  color: #554d4d;
  font-size: 15px;
  line-height: 1.6;
}

.htech-blog-list-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.htech-blog-list-card li i {
  color: #f57e20;
  margin-top: 4px;
  flex-shrink: 0;
}

.htech-blog-highlight {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 28px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(245, 126, 32, 0.1) 0%,
    rgba(245, 126, 32, 0.03) 100%
  );
  border: 1px solid rgba(245, 126, 32, 0.2);
  margin-bottom: 36px;
  transition: all 0.3s ease;
}

.htech-blog-highlight__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f57e20;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245, 126, 32, 0.28);
}

.htech-blog-highlight h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  line-height: 1.35;
}

.htech-blog-highlight p {
  margin-bottom: 0;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .htech-blog-highlight {
    padding: 20px 18px;
    gap: 15px;
  }

  .htech-blog-highlight__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 10px;
  }

  .htech-blog-highlight h4 {
    font-size: 17.5px;
    margin-bottom: 8px;
  }

  .htech-blog-highlight p {
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .htech-blog-highlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 16px;
  }

  .htech-blog-highlight h4 {
    font-size: 17px;
  }
}

/* Custom Careers Feature Highlight Card */
.htech-careers-highlight-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
  border: 1px solid rgba(245, 126, 32, 0.2);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 12px 35px rgba(245, 126, 32, 0.08);
}

.htech-careers-highlight-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(245, 126, 32, 0.15);
}

.htech-careers-highlight-card__title i {
  color: #f57e20;
  font-size: 22px;
}

.htech-careers-highlight-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.htech-careers-highlight-card__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.htech-careers-highlight-card__list li i {
  color: #f57e20;
  font-size: 19px;
  margin-top: 3px;
  flex-shrink: 0;
}

.htech-careers-highlight-card__list li strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}

.htech-careers-highlight-card__list li span {
  font-size: 14px;
  color: #555555;
  line-height: 1.45;
}

.htech-blog-body > .row {
  margin-bottom: 36px;
}

.htech-blog-conclusion {
  padding: 28px 30px;
  border-radius: 18px;
  background: #121212;
  color: #fff;
  margin-bottom: 36px;
}

.htech-blog-conclusion h4 {
  color: #f57e20;
  margin-bottom: 12px;
  font-size: 22px;
}

.htech-blog-conclusion p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  line-height: 1.8;
}

.htech-blog-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 16px;
  border: 1px solid #ececec;
  background: #f9f9f9;
  margin-bottom: 36px;
}

.htech-blog-cta h5 {
  margin-bottom: 6px;
  font-size: 20px;
}

.htech-blog-cta p {
  margin-bottom: 0;
  color: #878c8f;
}

.htech-blog-comment {
  border-top: 1px solid #ececec;
  padding-top: 34px;
}

.htech-blog-comment h4 {
  margin-bottom: 20px;
  font-size: 24px;
}

.htech-blog-comment textarea,
.htech-blog-comment input {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.htech-blog-comment textarea {
  min-height: 140px;
  resize: vertical;
  margin-bottom: 16px;
}

.htech-blog-comment textarea:focus,
.htech-blog-comment input:focus {
  outline: none;
  border-color: #f57e20;
  box-shadow: 0 0 0 3px rgba(245, 126, 32, 0.15);
}

.htech-blog-comment__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.htech-blog-sidebar {
  position: sticky;
  top: 110px;
}

@media (max-width: 991px) {
  .htech-blog-sidebar {
    position: static;
  }

  .htech-blog-body {
    padding: 28px 22px 32px;
  }

  .htech-blog-hero__content {
    padding: 24px 22px;
  }

  .htech-blog-grid {
    grid-template-columns: 1fr;
  }

  .htech-blog-comment__fields {
    grid-template-columns: 1fr;
  }

  .htech-blog-cta .si__contact__btn {
    width: 100%;
  }

  .htech-blog-cta .si__contact__btn a {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

/* Section label — pill outline (WHO WE ARE style) */
.htech-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 30px;
  background-color: transparent;
  border: 1px solid var(--si-theme-primary);
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: var(--si-fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--si-common-black);
  margin-bottom: 14px;
  width: fit-content;
  line-height: 1.35;
}

/* Override generic .si-section-title span gray border on careers labels */
.si-section-title .htech-section-label,
.si-section-title span.htech-section-label {
  border: 1px solid var(--si-theme-primary) !important;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
}

.htech-section-label i {
  color: var(--si-theme-primary);
  font-size: 12px;
}

.si-section-title.text-center .htech-section-label {
  margin-left: auto;
  margin-right: auto;
}

/* Careers listing & detail pages */
.htech-careers-intro__title {
  padding-bottom: 0;
}

.htech-careers-intro__title p {
  color: var(--si-common-gray-2);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 720px;
}

.htech-careers-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}

.htech-careers-highlights__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.htech-careers-highlights__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(245, 126, 32, 0.1);
  color: #f57e20;
  font-size: 18px;
}

.htech-careers-highlights__text {
  font-size: clamp(14px, 1.6vw, 15px);
  color: var(--si-common-gray-2);
  line-height: 1.5;
}

.htech-careers-highlights__text strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: var(--si-fw-bold);
  color: #f57e20;
  margin-bottom: 2px;
}

.htech-careers-perks__lead {
  color: var(--si-common-gray-2);
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.65;
}

.htech-careers-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
  margin-top: 8px;
}

.htech-careers-values__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.htech-careers-values__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(245, 126, 32, 0.1);
  color: #f57e20;
  font-size: 20px;
}

.htech-careers-values__content h5 {
  font-size: var(--htech-fs-card-title);
  font-weight: var(--si-fw-semibold);
  color: var(--si-common-black);
  margin-bottom: 8px;
  line-height: 1.4;
}

.htech-careers-values__content p {
  font-size: var(--htech-fs-card-desc);
  color: #555;
  line-height: 1.65;
  margin-bottom: 0;
}

.htech-careers-area {
  padding-top: 90px;
}

.htech-careers-listing__head p,
.htech-apply-form__head p {
  color: var(--si-common-gray-2);
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.65;
}

.htech-apply-form__head {
  padding-bottom: 40px;
}

.htech-careers-filter {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 40px;
  padding: 18px 20px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.04);
}

.htech-careers-filter__search {
  position: relative;
}

.htech-careers-filter__search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 14px;
  pointer-events: none;
}

.htech-careers-filter__select {
  position: relative;
}

.htech-careers-filter__select i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 11px;
  pointer-events: none;
}

.htech-careers-filter input,
.htech-careers-filter select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  background: #f9f9f9;
  color: var(--si-common-black);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.htech-careers-filter select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}

.htech-careers-filter__search input {
  padding-left: 40px;
}

.htech-careers-filter input:focus,
.htech-careers-filter select:focus {
  outline: none;
  border-color: #02375f;
  box-shadow: 0 0 0 3px rgba(2, 55, 95, 0.1);
  background: #fff;
}

.htech-careers-filter__btn {
  margin-top: 0;
  align-self: stretch;
  display: flex;
}

.htech-careers-filter .si__contact__btn a,
.htech-careers-filter .si__contact__btn button,
.htech-careers-filter__btn a,
.htech-careers-filter__btn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  width: 100%;
  min-height: 42px;
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(0.68rem, 0.2vw + 0.58rem, 0.78rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--si-common-white);
  background: #f57e20;
  border: 1px solid #f57e20;
  border-radius: 4px;
  padding: 0.6em 1.2em;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.htech-careers-filter .si__contact__btn button:hover,
.htech-careers-filter__btn button:hover {
  background: #f47615;
  border-color: #f47615;
  color: var(--si-common-white);
}

.htech-careers-filter .si__contact__btn button:hover .si-btn-icon {
  transform: translateX(4px);
}

.htech-career-card__btn {
  margin-top: 0;
}

.htech-career-card__btn a {
  font-size: clamp(0.68rem, 0.2vw + 0.58rem, 0.78rem);
  padding: 0.6em 1.15em;
  min-height: auto;
}

.htech-career-card-col.is-hidden {
  display: none;
}

.htech-career-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 14px;
  padding: 26px 28px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.htech-career-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18, 18, 18, 0.08);
}

.htech-career-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.htech-career-card__dept {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(2, 55, 95, 0.08);
  color: #02375f;
  font-size: 12px !important;
  font-weight: var(--si-fw-semibold);
  /* text-transform: uppercase; */
  letter-spacing: 0.04em;
}

.htech-career-card__title {
  font-size: var(--htech-fs-card-title);
  font-weight: var(--si-fw-semibold);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: var(--si-common-black);
}

.htech-career-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.htech-career-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #555;
  font-size: clamp(11px, 1.4vw, 12px);
  font-weight: var(--si-fw-medium);
  letter-spacing: 0.02em;
}

.htech-career-card__tag i {
  font-size: 11px;
  color: #f57e20;
}

.htech-career-card__desc {
  color: var(--si-common-gray-2);
  font-size: var(--htech-fs-card-desc);
  margin-bottom: 22px;
  line-height: 1.65;
  flex: 1;
}

.htech-career-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 4px;
}

.htech-career-card__view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f57e20;
  font-weight: var(--si-fw-semibold);
  letter-spacing: 0.03em;
  font-size: 13px;
  text-transform: uppercase;
}

.htech-career-card__view:hover {
  color: #d96b14;
}

.htech-careers-empty {
  text-align: center;
  padding: 56px 24px;
  border: 1px dashed rgba(18, 18, 18, 0.12);
  border-radius: 14px;
  background: #fafbfc;
}

.htech-careers-empty i {
  font-size: 36px;
  color: #d1d5db;
  margin-bottom: 16px;
}

.htech-careers-empty h4 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 8px;
  color: var(--si-common-black);
}

.htech-careers-empty p {
  color: var(--si-common-gray-2);
  margin-bottom: 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.htech-career-detail {
  padding: 70px 0 110px;
}

.htech-career-detail__header h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.htech-career-detail__section {
  margin-top: 34px;
  padding-top: 0;
  border-top: none;
}

.htech-career-detail__section::before {
  content: "";
  display: block;
  width: 25%;
  min-width: 72px;
  max-width: 220px;
  height: 2px;
  background: rgba(245, 126, 32, 0.45);
  margin: 0 0 28px;
  border-radius: 2px;
}

.htech-career-detail__header + .htech-career-detail__section::before {
  margin-top: 0;
}

.htech-career-detail__section h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: var(--si-common-black);
}

.htech-career-detail__section p,
.htech-career-detail__section li {
  color: var(--si-common-text-body);
  font-size: var(--htech-fs-content);
  line-height: 1.75;
}

.htech-career-detail__section ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.htech-career-detail__section li {
  margin-bottom: 8px;
}

.htech-blog-listing-area {
  padding: 70px 0 110px;
}

.htech-blog-list-card {
  height: 100%;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.htech-blog-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18, 18, 18, 0.08);
}

.htech-blog-list-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.htech-blog-list-card__body {
  padding: 22px 22px 26px;
}

.htech-blog-list-card__body h3 {
  font-size: var(--htech-fs-card-title);
  margin-bottom: 10px;
}

.htech-blog-list-card__body p {
  color: var(--si-common-gray-2);
  font-size: var(--htech-fs-card-desc);
  margin-bottom: 16px;
  line-height: 1.65;
}

@media (max-width: 1199px) {
  .htech-careers-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }
}

@media (max-width: 991px) {
  .htech-careers-intro {
    padding-top: 70px;
  }

  .htech-careers-area {
    padding-top: 70px;
  }

  .htech-careers-filter {
    grid-template-columns: 1fr 1fr;
  }

  .htech-careers-filter__search {
    grid-column: 1 / -1;
  }

  .htech-careers-filter__btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .htech-careers-highlights {
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .htech-careers-values {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .htech-careers-filter {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .htech-career-card {
    padding: 22px 20px;
  }

  .htech-career-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .htech-career-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .htech-career-card__actions .si__contact__btn,
  .htech-career-card__actions .si__contact__btn a,
  .htech-career-card__actions .htech-career-card__btn a {
    width: 100%;
  }

  .htech-career-card__view {
    justify-content: center;
  }
}

/* ==========================================================================
   HTECH Typography System — section-aware font weights (Roboto)
   ========================================================================== */

/* Navigation */
.si-header-menu > nav > ul > li > a {
  font-weight: var(--si-fw-medium);
}

.si-header-menu > nav > ul > li.active > a,
.si-header-dropdown nav > ul > li.active > a,
.dropdown-white-bg nav > ul > li.active > a {
  font-weight: var(--si-fw-semibold);
}

.si-header-dropdown nav ul li .si-submenu li a:hover,
.si-header-dropdown nav ul li .si-submenu li a:focus {
  font-weight: var(--si-fw-medium);
}

.si-mobile-menu-active ul li a {
  font-weight: var(--si-fw-medium);
}

/* Inner page hero / breadcrumb */
.si__breadcumb__text h2 {
  font-weight: var(--si-fw-bold);
}

.si__breadcumb__text > span {
  font-weight: var(--si-fw-medium);
}

/* Section blocks */
.si-section-title h2,
.si-section-title h3,
.htech-careers-listing__head h2,
.htech-apply-form__head h2,
.htech-careers-perks h2 {
  font-weight: var(--si-fw-bold);
}

.si-section-title span,
.htech-career-card__tag {
  font-weight: var(--si-fw-medium);
}

.si-section-title p,
.si-about-content p,
.si-service-content p,
.si-why-choose-content p {
  font-weight: var(--si-fw-regular);
}

/* Product & service cards */
.si-product-card__title,
.si-product-card__title a,
.si-service-2-box h3,
.si-service-2-box h4 {
  font-weight: var(--si-fw-semibold);
}

.si-product-card__desc,
.si-service-2-box p,
.si-service-2-list p {
  font-weight: var(--si-fw-regular);
}

.si-product-card__learn-more,
.si-service-2-list ul li span {
  font-weight: var(--si-fw-semibold);
}

/* Blog sections */
.si-blog-area .si-blog-main-title,
.si-blog-area .si-blog-main-title a,
.htech-blog-list-card__body h3,
.htech-blog-list-card__body h3 a {
  font-weight: var(--si-fw-semibold);
}

.si-blog-area .si-blog-content p,
.htech-blog-list-card__body p,
.si-blog-meta,
.si__blog__details__content p,
.si__blog__details__content li {
  font-weight: var(--si-fw-regular);
}

.si__blog__details__content h1,
.si__blog__details__content h2,
.si__blog__details__content h3,
.si__blog__details__content h4 {
  font-weight: var(--si-fw-bold);
}

.si__blog__sidebar__title,
.si__blog__sidebar__post-title {
  font-weight: var(--si-fw-semibold);
}

/* Careers */
.htech-career-card__title,
.htech-career-detail__header h1 {
  font-weight: var(--si-fw-bold);
}

.htech-career-card__desc,
.htech-career-detail__section p,
.htech-career-detail__section li {
  font-weight: var(--si-fw-regular);
}

.htech-career-detail__section h3 {
  font-weight: var(--si-fw-semibold);
}

.htech-career-card__view {
  font-weight: var(--si-fw-semibold);
}

/* Contact & forms */
.si__contact__text h1,
.si__contact__text h2 {
  font-weight: var(--si-fw-bold);
}

.si__contact__text span,
.si__contact__box label,
.si__location__card__title {
  font-weight: var(--si-fw-medium);
}

.si__contact__box input,
.si__contact__box textarea,
.si__contact__box select,
.si__contact__info__item span,
.si__location__card__address,
.si__location__card__info span {
  font-weight: var(--si-fw-regular);
}

/* FAQ & accordion */
.si-faq-accordion-wrap .accordion-header .accordion-buttons {
  font-weight: var(--si-fw-semibold);
}

.si-faq-accordion-wrap .accordion-body p {
  font-weight: var(--si-fw-regular);
}

/* Team & testimonial */
.si-team-title,
.si__team__details__text h2,
.si__team__details__textthree span {
  font-weight: var(--si-fw-semibold);
}

.si-testimonial-content p,
.si-testimonial-author span {
  font-weight: var(--si-fw-regular);
}

.si-testimonial-author h4 {
  font-weight: var(--si-fw-semibold);
}

.si-testimonial-pagination .swiper-pagination-bullet {
  font-weight: var(--si-fw-medium);
}

.si-testimonial-pagination .swiper-pagination-bullet-active {
  font-weight: var(--si-fw-semibold);
}

/* Footer */
.si-footer-v2-title {
  font-weight: var(--si-fw-semibold);
}

.si-footer-v2-menu ul li a,
.si-footer-contact-block ul li a,
.si-footer-contact-block ul li span,
.si-footer-brand-text,
.si-footer-copyright,
.si-footer-legal a {
  font-weight: var(--si-fw-regular);
}

/* Buttons & CTAs — keep emphasis */
.si__contact__btn a,
.submit-btn,
.si-offcanvas-cta.si__contact__btn a,
.si-hero-cta-btn {
  font-weight: var(--si-fw-bold);
}

/* Offcanvas panel */
.si-offcanvas-contact-list a,
.si-offcanvas-contact-list li {
  font-weight: var(--si-fw-regular);
}

/* Pricing & portfolio */
.si-pricing-title,
.si-pricing-price,
.si-portfolio-title {
  font-weight: var(--si-fw-semibold);
}

.si-pricing-list li,
.si-portfolio-content p {
  font-weight: var(--si-fw-regular);
}

/* Utility: lead & meta text */
.lead,
.text-muted,
small,
.si-meta-text {
  font-weight: var(--si-fw-regular);
}

strong,
b {
  font-weight: var(--si-fw-semibold);
}

/* Career Application Form */
.htech-apply-form-area {
  padding: 80px 0 100px;
  background: #f7f8fb;
  scroll-margin-top: 100px;
}

.htech-apply-form-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px 36px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: 0 12px 40px rgba(245, 126, 32, 0.08);
}

.htech-apply-form-header h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--si-common-black);
  margin-bottom: 8px;
}

.htech-apply-form-header p {
  color: var(--si-common-gray-2);
  font-size: 15px;
  margin-bottom: 32px;
}

.htech-apply-form-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 36px;
  padding: 0 10px;
}

.htech-apply-form-stepper::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: #e8eaf0;
  z-index: 0;
}

.htech-apply-form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.htech-apply-form-step .step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--si-fw-semibold);
  background: #f3f4f6;
  color: var(--si-common-gray-2);
  transition: all 0.25s ease;
}

.htech-apply-form-step .step-label {
  font-size: 13px;
  color: var(--si-common-gray-2);
  text-align: center;
  transition: color 0.25s ease;
}

.htech-apply-form-step.active .step-number {
  background: var(--si-theme-primary);
  color: #fff;
}

.htech-apply-form-step.active .step-label {
  color: var(--si-theme-primary);
  font-weight: var(--si-fw-semibold);
}

.htech-apply-form-step.completed .step-number {
  background: var(--si-theme-primary);
  color: #fff;
}

.htech-apply-form-step.completed .step-label {
  color: var(--si-theme-primary);
}

.htech-apply-form-panel {
  display: none;
}

.htech-apply-form-panel.active {
  display: block;
}

.htech-apply-form-panel h3 {
  font-size: 1.1rem;
  color: var(--si-common-black);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245, 126, 32, 0.2);
}

.htech-apply-form-group {
  margin-bottom: 18px;
}

.htech-apply-form-group label {
  display: block;
  font-size: 14px;
  font-weight: var(--si-fw-medium);
  color: var(--si-common-black);
  margin-bottom: 8px;
}

.htech-apply-form-group label .required {
  color: #e53e3e;
}

.htech-apply-form-group input[type="text"],
.htech-apply-form-group input[type="email"],
.htech-apply-form-group input[type="tel"],
.htech-apply-form-group input[type="url"],
.htech-apply-form-group input[type="number"],
.htech-apply-form-group select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 15px;
  background: var(--si-common-surface);
  color: var(--si-common-black);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.htech-apply-form-group input:focus,
.htech-apply-form-group select:focus {
  outline: none;
  border-color: var(--si-theme-primary);
  box-shadow: 0 0 0 3px rgba(245, 126, 32, 0.15);
  background: #fff;
}

.htech-apply-form-group input.is-invalid,
.htech-apply-form-group select.is-invalid {
  border-color: #e53e3e;
  background: #fff5f5;
}

.htech-apply-form-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #e53e3e;
}

.htech-apply-form-file {
  position: relative;
}

.htech-apply-form-file input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.htech-apply-form-file-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 16px;
  background: var(--si-common-surface);
  border-radius: 8px;
  border: 1px dashed #d1d5db;
  transition: border-color 0.2s ease;
}

.htech-apply-form-file:hover .htech-apply-form-file-box,
.htech-apply-form-file input:focus + .htech-apply-form-file-box {
  border-color: var(--si-theme-primary);
}

.htech-apply-form-file-btn {
  display: inline-block;
  padding: 6px 14px;
  background: var(--si-theme-primary);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: var(--si-fw-semibold);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.htech-apply-form-file-name {
  font-size: 14px;
  color: var(--si-common-gray-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.htech-apply-form-file-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--si-common-gray-2);
}

.htech-apply-form-file input.is-invalid + .htech-apply-form-file-box {
  border-color: #e53e3e;
  background: #fff5f5;
}

.htech-apply-form-nav {
  margin-top: 28px;
}

.htech-apply-form-nav--single .htech-apply-form-btn {
  width: 100%;
}

.htech-apply-form-nav--dual {
  display: flex;
  gap: 14px;
}

.htech-apply-form-nav--dual .htech-apply-form-btn {
  flex: 1;
}

.htech-apply-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--si-theme-primary);
  border-radius: 4px;
  background: var(--si-theme-primary);
  color: #fff;
  font-size: clamp(0.8rem, 1.2vw, 0.9375rem);
  font-weight: var(--si-fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.htech-apply-form-btn:hover {
  background: #f47615;
  border-color: #f47615;
}

.htech-apply-form-btn#careerFormBack {
  background: transparent;
  color: var(--si-theme-primary);
}

.htech-apply-form-btn#careerFormBack:hover {
  background: var(--si-theme-primary);
  color: #fff;
}

.htech-apply-form-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.htech-apply-form-btn i {
  font-size: 13px;
}

.htech-apply-form-msg {
  display: none;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: var(--si-fw-medium);
  line-height: 1.5;
}

.htech-apply-form-msg__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.htech-apply-form-msg__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.htech-apply-form-msg__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.htech-apply-form-msg__title {
  display: block;
  font-size: 15px;
  font-weight: var(--si-fw-bold);
  line-height: 1.35;
}

.htech-apply-form-msg__text {
  display: block;
  font-size: 13.5px;
  font-weight: var(--si-fw-regular);
  line-height: 1.55;
}

.htech-apply-form-msg.is-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.htech-apply-form-msg.is-success .htech-apply-form-msg__icon {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.htech-apply-form-msg.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.htech-apply-form-msg.is-error .htech-apply-form-msg__icon {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

@media (max-width: 767px) {
  .htech-apply-form-area {
    padding: 60px 0 80px;
  }

  .htech-apply-form-card {
    padding: 28px 20px 24px;
    border-radius: 12px;
  }

  .htech-apply-form-stepper::before {
    left: 18%;
    right: 18%;
  }

  .htech-apply-form-step .step-label {
    font-size: 11px;
  }

  .htech-apply-form-nav--dual {
    flex-direction: column;
  }
}

/* ==========================================================================
   HTECH Responsive Typography — site-wide title/content hierarchy
   Ensures content is always smaller than its parent title on every page.
   ========================================================================== */

/* Section intros & leads */
.si-about-desc,
.si-about-desc-2,
.si-about-content p,
.si-about-content-2 p,
.si-service-content p,
.si-why-choose-content p,
.htech-careers-intro__title p,
.htech-careers-perks__lead,
.htech-careers-listing__head p,
.htech-apply-form__head p,
.si-footer-brand-text {
  font-size: var(--htech-fs-lead);
  line-height: 1.65;
}

/* Card & list content blocks */
.si-product-card__title,
.si-product-card__title a {
  font-size: var(--htech-fs-card-title);
}

.si-product-card__desc,
.si-service-2-box p,
.si-service-2-list p,
.htech-blog-list-card__body p,
.si-blog-area .si-blog-content p,
.si-blog-meta,
.si-portfolio-content p,
.si-pricing-list li,
.si-testimonial-content p,
.si__blog__details__content p,
.si__blog__details__content li,
.si__blog__details__listtwo ul li,
.si__blog__details__list ul li,
.si__blog__details__icon p,
.si__location__card__address,
.si__location__card__info span,
.si-footer-v2-menu ul li a,
.si-footer-contact-block ul li a,
.si-footer-contact-block ul li span {
  font-size: var(--htech-fs-content);
  line-height: 1.65;
}

/* Card & list titles */
.si__blog__details__listtwo h4,
.si__blog__details__content h3,
.si__blog__details__content h4 {
  font-size: var(--htech-fs-h4);
  line-height: 1.35;
}

.si-portfolio-title,
.si-pricing-title,
.si-team-title,
.htech-blog-list-card__body h3,
.htech-blog-list-card__body h3 a,
.si-blog-area .si-blog-main-title,
.si-blog-area .si-blog-main-title a,
.si-service-2-box h3,
.si-service-2-box h4 {
  font-size: var(--htech-fs-card-title);
  line-height: 1.35;
}

/* Page & section titles (larger than card titles) */
.si__blog__details__content h1,
.si__blog__details__content h2,
.htech-career-detail__header h1,
.si__contact__text h1,
.si__contact__text h2,
.si__team__details__text h2 {
  font-size: var(--htech-fs-h2-page);
  line-height: 1.3;
}

.htech-career-detail__section h3,
.htech-apply-form-panel h3,
.si-footer-v2-title,
.si__blog__sidebar__title {
  font-size: var(--htech-fs-h5);
  line-height: 1.35;
}

/* Meta, tags & small UI text */
.htech-career-card__tag,
.si-meta-text,
.htech-apply-form-file-hint,
.htech-apply-form-step .step-label {
  font-size: var(--htech-fs-content-sm);
}

/* Form field text */
.htech-apply-form-group input,
.htech-apply-form-group select,
.htech-apply-form-group label,
.si__contact__box input,
.si__contact__box textarea,
.si__contact__box select {
  font-size: var(--htech-fs-content);
}

/* Footer copyright & legal */
.si-footer-copyright,
.si-footer-legal a {
  font-size: var(--htech-fs-content-sm);
}

/* Hero headings keep template scale; ensure hero subtext stays smaller */
.si-banner-content p,
.si-hero-content p {
  font-size: var(--htech-fs-lead);
  line-height: 1.65;
}

/* ==========================================================================
   HTECH Contact Page
   contact.html
   ========================================================================== */

.htech-contact-intro__title {
  padding-bottom: 0;
}

.htech-contact-intro__title p,
.htech-contact-locations__head p {
  color: var(--si-common-gray-2);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.htech-contact-highlights {
  margin-top: 8px;
}

.htech-contact-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.04);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.htech-contact-highlight:not(.htech-contact-highlight--static):hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18, 18, 18, 0.08);
  border-color: rgba(245, 126, 32, 0.35);
}

.htech-contact-highlight__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(245, 126, 32, 0.1);
  color: #f57e20;
  font-size: 18px;
}

.htech-contact-highlight__content h5 {
  font-size: 16px;
  font-weight: var(--si-fw-semibold);
  color: var(--si-common-black);
  margin-bottom: 6px;
  line-height: 1.3;
}

.htech-contact-highlight__content p {
  font-size: 14px;
  color: var(--si-common-gray-2);
  margin: 0;
  line-height: 1.55;
  word-break: break-word;
}

.htech-contact-form-area {
  background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
  scroll-margin-top: 90px;
}

.htech-contact-form-card,
.htech-contact-sidebar {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 16px;
  padding: 36px 36px 32px;
  box-shadow: 0 12px 40px rgba(18, 18, 18, 0.05);
}

.htech-contact-form-header h3,
.htech-contact-sidebar__header h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--si-common-black);
  margin-bottom: 8px;
  font-weight: var(--si-fw-bold);
}

.htech-contact-form-header p,
.htech-contact-sidebar__header p {
  color: var(--si-common-gray-2);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.htech-contact-form-group {
  margin-bottom: 0;
}

.htech-contact-form-group label {
  display: block;
  font-size: 14px;
  font-weight: var(--si-fw-medium);
  color: var(--si-common-black);
  margin-bottom: 8px;
}

.htech-contact-form-group label .required {
  color: #f57e20;
}

.htech-contact-form-group input[type="text"],
.htech-contact-form-group input[type="email"],
.htech-contact-form-group input[type="tel"],
.htech-contact-form-group textarea,
.htech-contact-select {
  width: 100%;
  font-size: 15px;
  color: var(--si-common-black);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.htech-contact-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.htech-contact-form-group input:focus,
.htech-contact-form-group textarea:focus,
.htech-contact-select:focus {
  outline: none;
  background: #fff;
  border-color: #f57e20;
  box-shadow: 0 0 0 3px rgba(245, 126, 32, 0.12);
}

.htech-contact-form-group input::placeholder,
.htech-contact-form-group textarea::placeholder {
  color: #9ca3af;
}

.htech-contact-select-wrap {
  position: relative;
}

.htech-contact-select-wrap i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--si-common-gray-2);
  pointer-events: none;
}

.htech-contact-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.htech-contact-select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: #f3f4f6;
}

.htech-contact-form-msg {
  display: none;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: var(--si-fw-medium);
  line-height: 1.5;
}

.htech-contact-form-msg.is-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.htech-contact-form-msg.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.htech-contact-form-submit {
  margin-top: 24px;
}

.htech-contact-form-submit .submit-btn {
  width: 100%;
}

.htech-contact-form-submit .submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.htech-contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.htech-contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  list-style: none;
}

.htech-contact-info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.htech-contact-info-list li > .htech-contact-info-list__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f47615;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.htech-contact-info-list li > .htech-contact-info-list__icon i {
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.htech-contact-info-list strong {
  display: block;
  font-size: 14px;
  font-weight: var(--si-fw-semibold);
  color: var(--si-common-black);
  margin-bottom: 4px;
}

.htech-contact-info-list li > div a,
.htech-contact-info-list li > div > span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--si-common-gray-2);
  text-decoration: none;
}

.htech-contact-info-list li > div a:hover {
  color: #f57e20;
}

.htech-contact-sidebar__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(245, 126, 32, 0.08);
  border: 1px solid rgba(245, 126, 32, 0.18);
}

.htech-contact-sidebar__note i {
  color: #f57e20;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.htech-contact-sidebar__note p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--si-common-gray-2);
  margin: 0;
}

.htech-contact-sidebar__note a {
  color: #f57e20;
  font-weight: var(--si-fw-semibold);
  text-decoration: none;
}

.htech-contact-sidebar__note a:hover {
  text-decoration: underline;
}

.htech-contact-locations__head {
  margin-bottom: 48px;
  padding-bottom: 0;
}

.htech-contact-locations .si__location__card__address {
  font-size: 16px;
}

.htech-contact-locations .si__location__card__info span {
  font-size: 15px;
}

.htech-contact-locations .si__location__card__info a {
  color: inherit;
  text-decoration: none;
}

.htech-contact-locations .si__location__card__info a:hover {
  color: #f57e20;
}

@media (max-width: 991px) {
  .htech-contact-intro {
    padding-top: 70px;
  }

  .htech-contact-form-card,
  .htech-contact-sidebar {
    padding: 28px 24px 24px;
  }

  .htech-contact-locations__head {
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .htech-contact-highlights {
    padding-bottom: 32px;
  }

  .htech-contact-highlight {
    padding: 18px 16px;
  }

  .htech-contact-highlight__icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .htech-contact-form-area {
    padding-bottom: 56px;
  }

  .htech-contact-locations {
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .htech-contact-form-card,
  .htech-contact-sidebar {
    padding: 22px 18px 20px;
    border-radius: 14px;
  }

  .htech-contact-form-header p,
  .htech-contact-sidebar__header p {
    margin-bottom: 22px;
  }

  .htech-contact-form-group input[type="text"],
  .htech-contact-form-group input[type="email"],
  .htech-contact-form-group input[type="tel"],
  .htech-contact-form-group textarea,
  .htech-contact-select {
    padding: 12px 14px;
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .htech-contact-form-submit .submit-btn {
    width: auto;
    min-width: 220px;
  }
}

/*----------------------------------------*/
/*  Horizontal Blog Card — Blog Listing
/*----------------------------------------*/
.si-blog-card-horizontal {
  display: flex;
  background: var(--si-common-white);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.si-blog-card-horizontal:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

/* ---- Thumbnail (left side) ---- */
.si-blog-card-horizontal__thumb {
  position: relative;
  flex: 0 0 340px;
  width: 340px;
  min-height: 260px;
  display: block;
  overflow: hidden;
}

.si-blog-card-horizontal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.si-blog-card-horizontal:hover .si-blog-card-horizontal__thumb img {
  transform: scale(1.05);
}

/* ---- Date style ---- */
.si-blog-card-horizontal__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--si-common-text-body);
}

.si-blog-card-horizontal__date i {
  color: var(--si-theme-primary);
  font-size: 14px;
}

/* ---- Body (right side) ---- */
.si-blog-card-horizontal__body {
  flex: 1;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Meta tags ---- */
.si-blog-card-horizontal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.si-blog-card-horizontal__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--si-common-text-body);
  background: #f6f6f6;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.01em;
}

.si-blog-card-horizontal__meta span i {
  color: var(--si-theme-primary);
  font-size: 12px;
}

/* ---- Title ---- */
.si-blog-card-horizontal__title {
  font-size: clamp(1.05rem, 1.2vw + 0.6rem, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--si-common-black);
}

.si-blog-card-horizontal__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.si-blog-card-horizontal__title a:hover {
  color: var(--si-theme-primary);
}

/* ---- Description ---- */
.si-blog-card-horizontal__desc {
  font-size: var(--htech-fs-card-desc);
  line-height: 1.65;
  color: var(--si-common-text-body);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Card Footer ---- */
.si-blog-card-horizontal__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(18, 18, 18, 0.06);
}

/* ---- Learn More link ---- */
.si-blog-card-horizontal__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--si-theme-primary);
  text-decoration: none;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.si-blog-card-horizontal__link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.si-blog-card-horizontal__link:hover {
  gap: 12px;
  color: var(--si-common-black);
}

.si-blog-card-horizontal__link:hover i {
  transform: translateX(2px);
}

/* ---- Responsive: Tablet ---- */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .si-blog-card-horizontal__thumb {
    flex: 0 0 260px;
    width: 260px;
    min-height: 220px;
  }

  .si-blog-card-horizontal__body {
    padding: 22px 24px;
  }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 767px) {
  .si-blog-card-horizontal {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .si-blog-card-horizontal__thumb {
    flex: none;
    width: 100%;
    min-height: 200px;
    max-height: 240px;
  }

  .si-blog-card-horizontal__body {
    padding: 20px 20px 22px;
  }

  .si-blog-card-horizontal__title {
    font-size: 1.05rem;
  }

  .si-blog-card-horizontal__meta span {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ==============================================
   WHO WE ARE — About Section
   ============================================== */

.si-about-section {
  padding: 100px 0;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}

/* Left: Image Container */
.si-about-visual {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: auto;
}

.si-about-visual img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Orange Badge on Image */
.si-about-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #f57e20;
  color: #fff;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}

.si-about-badge__number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.si-about-badge__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Right: Body Content */
.si-about-body {
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Heading */
.si-about-body__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #0d0d0d;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.si-about-body__highlight {
  color: #f57e20;
}

.si-about-body__divider {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: #f57e20;
  margin-bottom: clamp(15px, 3vw, 25px);
}

.si-about-body__subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  margin-bottom: clamp(15px, 3vw, 25px);
  line-height: 1.4;
  color: #111;
}

/* Description */
.si-about-body__desc {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 100%;
}

/* Stats Row */
.si-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.si-about-stat {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-left: 4px solid #f57e20;
  transition: all 0.3s ease;
  position: relative;
}

.si-about-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.si-about-stat__number {
  display: inline-block;
  font-size: 42px;
  font-weight: 800;
  color: #f57e20;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}

.si-about-stat__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  margin-bottom: 10px;
}

.si-about-stat__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* ==============================================
   CUSTOM MODERN ABOUT SECTION (about-us.html)
   ============================================== */

.si-about-section-custom {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.si-about-body-custom {
  padding-right: 40px;
}

.si-about-body-custom__heading {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: #0d0d0d;
  line-height: 1.15;
  margin-bottom: 12px;
}

.si-about-body-custom__highlight {
  color: #f57e20;
}

.si-about-body-custom__divider {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: #f57e20;
  margin-bottom: 25px;
}

.si-about-body-custom__subtitle {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.4;
}

.si-about-body-custom__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

/* Card UI matching the reference image */
.si-about-cards-grid-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.si-about-card-custom {
  background: #ffffff;
  border-radius: 12px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-left: 4px solid #f57e20;
  transition: all 0.3s ease;
  position: relative;
}

.si-about-card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.si-about-card-custom__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.si-about-card-custom__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 126, 32, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.si-about-card-custom__icon-box i {
  color: #f57e20;
  font-size: 20px;
}

.si-about-card-custom__title {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  line-height: 1.35;
}

.si-about-card-custom__value {
  font-size: 42px;
  font-weight: 800;
  color: #f57e20;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}

.si-about-card-custom__value-line {
  width: 24px;
  height: 3px;
  background: #f57e20;
  margin-bottom: 15px;
}

.si-about-card-custom__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Right: Visual Area */
.si-about-visual-custom {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.si-about-visual-custom img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.si-about-badge-custom {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #f57e20;
  color: #ffffff;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  border-top-right-radius: 12px;
}

.si-about-badge-custom__number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.si-about-badge-custom__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Watermark */
.si-about-watermark-custom {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(100px, 15vw, 220px);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  text-align: center;
  width: 100%;
  letter-spacing: 10px;
}

/* Responsive Media Queries */
@media (min-width: 992px) and (max-width: 1199px) {
  .si-about-body-custom,
  .si-about-body {
    padding-right: 0;
  }
  .si-about-cards-grid-custom {
    gap: 16px;
  }
  .si-about-card-custom {
    padding: 22px 16px;
  }
  .si-about-card-custom__title {
    font-size: 15.5px;
  }
  .si-about-card-custom__value {
    font-size: 34px;
  }
  .si-about-visual-custom,
  .si-about-visual {
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 991px) {
  .si-about-body-custom,
  .si-about-body {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .si-about-visual-custom,
  .si-about-visual {
    height: auto;
    min-height: auto;
  }
  .si-about-card-custom__title {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .si-about-cards-grid-custom {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .si-about-visual-custom,
  .si-about-visual {
    height: auto;
    min-height: auto;
  }
  .si-about-card-custom__title {
    font-size: 16px;
    line-height: 1.35;
  }
  .si-about-card-custom__icon-box {
    width: 44px;
    height: 44px;
  }
  .si-about-card-custom__icon-box i {
    font-size: 18px;
  }
}

/* ==============================================
   Call Center Management Module Custom Styles
   ============================================== */
.si-product-details-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #0d0d0d;
  line-height: 1.3;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.si-product-details-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 40px;
}

/* Showcase Image */
.si-product-showcase-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 60px;
}

.si-product-showcase-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.si-product-showcase-wrap:hover img {
  transform: scale(1.02);
}

/* Challenge & Solution Grid Section */
.si-challenge-card-custom {
  background: #111111;
  color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.si-challenge-card-custom h4 {
  color: #f57e20;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.si-challenge-card-custom h4 i {
  font-size: 18px;
}

.si-challenge-list-custom {
  list-style: none;
  padding: 0;
  margin: 0;
}

.si-challenge-list-custom li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #cccccc;
}

.si-challenge-list-custom li::before {
  content: "\f057"; /* fa-circle-xmark */
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #ff4d4d;
  font-size: 16px;
}

.si-solution-card-custom {
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 40px;
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

.si-solution-card-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #f57e20;
}

.si-solution-card-custom h4 {
  color: #0d0d0d;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.si-solution-card-custom h4 i {
  color: #f57e20;
  font-size: 18px;
}

.si-solution-text-custom {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
}

/* Timeline Flow Section */
.si-timeline-container {
  padding: 10px 0;
}

.si-timeline-header {
  text-align: center;
  margin-bottom: 45px;
}

.si-title-tight {
  font-size: 28px;
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.5px;
}

.si-timeline-header h4 {
  font-size: 28px;
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.5px;
}

.si-timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* Line between steps */
.si-timeline-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #eaeaea;
  z-index: 1;
}

.si-timeline-step {
  width: 22%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.si-timeline-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #eaeaea;
  color: #0d0d0d;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.si-timeline-step:hover .si-timeline-number {
  background: #f57e20;
  border-color: #f57e20;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 126, 32, 0.3);
}

.si-timeline-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 8px;
}

.si-timeline-step-desc {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.5;
}

/* Sidebar Custom Navigation */
.si-sidebar-box-custom {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 30px 15px;
  position: sticky;
  top: 100px;
  z-index: 10;
}

.si-sidebar-title-custom {
  font-size: 20px;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaeaea;
  position: relative;
}

.si-sidebar-title-custom::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #f57e20;
}

.si-sidebar-menu-custom {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 290px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Custom Scrollbar for sidebar menu */
.si-sidebar-menu-custom::-webkit-scrollbar {
  width: 5px;
}

.si-sidebar-menu-custom::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.si-sidebar-menu-custom::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.si-sidebar-menu-custom::-webkit-scrollbar-thumb:hover {
  background: #f57e20;
}

.si-sidebar-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  background: #fdfdfd;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}

.si-sidebar-item-link i {
  font-size: 11px;
  color: #999999;
  transition: all 0.3s ease;
}

.si-sidebar-item-link:hover {
  background: #f57e20;
  border-color: #f57e20;
  color: #ffffff;
  transform: translateX(4px);
}

.si-sidebar-item-link:hover i {
  color: #ffffff;
  transform: translateX(3px);
}

.si-sidebar-item-link.active {
  background: #0d0d0d;
  border-color: #0d0d0d;
  color: #ffffff;
}

.si-sidebar-item-link.active i.si-product-sidebar-icon {
  color: #ffffff;
}

.si-sidebar-item-link.active i.fa-chevron-right {
  color: #f57e20;
}

/* Features Section override */
.si-timeline-section-custom {
  padding: 60px 0;
  background: #f7f9fc;
  border-top: 1px solid #eaeaea;
}

.si-features-section-custom {
  padding: 60px 0;
  background: #fcfcfc;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.si-features-title-custom {
  font-size: 28px;
  font-weight: 800;
  color: #0d0d0d;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.si-feature-card-premium {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.si-feature-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 126, 32, 0.3);
}

.si-feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(245, 126, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #f57e20;
  font-size: 22px;
  transition: all 0.3s ease;
}

.si-feature-card-premium:hover .si-feature-icon-box {
  background: #f57e20;
  color: #ffffff;
}

.si-feature-card-premium h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 15px;
}

.si-feature-card-premium p {
  font-size: 14.5px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Benefits section override */
.si-benefits-section-custom {
  padding: 60px 0;
  background: #ffffff;
}

.si-benefits-title-custom {
  font-size: 28px;
  font-weight: 800;
  color: #0d0d0d;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.si-benefit-item-premium {
  background: #fcfcfc;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.si-benefit-item-premium:hover {
  border-color: rgba(245, 126, 32, 0.3);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.si-benefit-icon-premium {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 126, 32, 0.08);
  color: #f57e20;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.si-benefit-item-premium:hover .si-benefit-icon-premium {
  background: #f57e20;
  color: #ffffff;
}

.si-benefit-info-premium h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 8px;
}

.si-benefit-info-premium p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .si-timeline-steps {
    flex-direction: column;
    gap: 40px;
  }

  .si-timeline-steps::before {
    display: none;
  }

  .si-timeline-step {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .si-timeline-number {
    margin: 0;
    flex-shrink: 0;
  }

  .si-timeline-step-info {
    padding-top: 5px;
  }
}

/* Additional tweaks for Call Center Page spacing and sidebar icons */
.si-product-wrapper {
  padding-top: 50px;
  padding-bottom: 30px;
}

.si-product-sidebar-icon {
  margin-right: 10px;
  color: #f57e20;
  font-size: 14px;
  transition: color 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.si-sidebar-item-link.active .si-product-sidebar-icon,
.si-sidebar-item-link:hover .si-product-sidebar-icon {
  color: #ffffff;
}

/* Problem & Solution Reference Card Styles */
.si-ref-card-custom {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.si-ref-card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 126, 32, 0.3);
}

.si-ref-card-custom .row {
  align-items: flex-start !important;
}

.si-ref-card-img-wrap {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f9f9f9; */
  /* border: 1px solid #f1f1f1; */
  transition: all 0.3s ease;
}

.si-ref-card-img-wrap img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain !important;
  border-radius: 8px;
  display: block;
  transition: transform 0.5s ease;
}

.si-ref-card-img-wrap:hover {
  /* background: #f5f5f5; */
  /* border-color: #e5e5e5; */
}

.si-ref-card-img-wrap:hover img {
  transform: scale(1.05);
}

.si-ref-card-body {
  padding: 10px 10px 10px 30px;
}

.col-md-7 .si-ref-card-body {
  padding: 10px 30px 10px 10px;
}

.si-ref-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.si-ref-card-title-line {
  width: 32px;
  height: 3px;
  background: #f57e20;
  margin-bottom: 24px;
  border-radius: 2px;
}

.si-ref-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.si-ref-card-list li {
  display: flex;
  align-items: flex-start;
  font-size: 14.5px;
  color: #333333;
  line-height: 1.5;
}

.si-ref-card-icon-wrap {
  color: #f57e20;
  font-size: 18px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.si-ref-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

@media (max-width: 768px) {
  .si-ref-card-img-wrap {
    height: 180px !important;
  }
  .si-ref-card-body {
    padding: 20px 0 0 0 !important;
  }
}

/* Custom Header Divider Utilities */
.si-text-highlight {
  color: #f57e20;
}

.si-title-tight {
  margin-bottom: 12px !important;
}

.si-title-tight-sm {
  margin-bottom: 6px !important;
}

@media (max-width: 768px) {
  .si-product-wrapper {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .si-timeline-section-custom {
    padding: 40px 0;
  }
  .si-features-section-custom {
    padding: 40px 0;
  }
  .si-benefits-section-custom {
    padding: 40px 0;
  }
}

@media (max-width: 991px) {
  .si-about-section {
    padding: 60px 0;
    overflow: hidden;
  }
  .si-about-section .row {
    overflow: hidden;
  }
  .si-about-section [class*="col-"] {
    overflow: hidden;
  }
  .si-about-body {
    padding: 40px 20px;
  }
  .si-about-visual,
  .si-about-visual-custom {
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .si-about-stats {
    grid-template-columns: 1fr;
  }
  .si-about-visual,
  .si-about-visual-custom {
    height: auto;
    min-height: auto;
  }
}

.si-divider-left {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: #f57e20;
  margin-bottom: 30px;
}

.si-divider-center {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: #f57e20;
  margin: 0 auto 50px auto;
}

.si-divider-timeline {
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: #f57e20;
  margin: 0 auto 12px auto;
}

/* ==========================================================================
   HTECH Services - Call Center Module Premium Custom Styles (Editorial concept)
   ========================================================================== */

/* Hero Intro Section */
.ccm-intro-section {
  padding: 60px 0;
  background: #ffffff;
}

.ccm-intro-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 126, 32, 0.08);
  border: 1px solid rgba(245, 126, 32, 0.25);
  color: #f57e20;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.ccm-intro-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: #0d0d0d;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.ccm-intro-title span {
  color: #f57e20;
}

.ccm-intro-desc {
  font-size: 16px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

/* Live CSS Dashboard Widget (0 Images, pure CSS) */
.ccm-dashboard-widget {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  margin-top: 15px;
  position: relative;
}

.ccm-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ccm-dash-status-dot {
  width: 8px;
  height: 8px;
  background: #2ec4b6;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(46, 196, 182, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
  }
}

.ccm-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.ccm-dash-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.ccm-dash-stat:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ccm-dash-stat small {
  display: block;
  font-size: 11px;
  color: #888888;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ccm-dash-stat strong {
  font-size: 20px;
  font-weight: 800;
}

.ccm-dash-agents {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ccm-dash-agent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.ccm-badge-active {
  background: rgba(245, 126, 32, 0.15);
  color: #f57e20;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
}

.ccm-badge-ready {
  background: rgba(46, 196, 182, 0.15);
  color: #2ec4b6;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
}

/* Stat Band */
.ccm-stat-band {
  background: #0d0d0d;
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ccm-stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ccm-stat-item:last-child {
  border-right: none;
}

.ccm-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: #f57e20;
  line-height: 1;
  margin-bottom: 6px;
}

.ccm-stat-label {
  font-size: 13px;
  color: #aaaaaa;
  font-weight: 500;
}

/* Eyebrow & Title Utilities */
.ccm-section-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f57e20;
  margin-bottom: 12px;
}

.ccm-section-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #0d0d0d;
  line-height: 1.25;
}

/* Alternating Row Content Layout */
.ccm-alternating-section {
  padding: 80px 0;
  background: #ffffff;
}

.ccm-alt-row {
  margin-bottom: 85px;
}

.ccm-alt-row:last-child {
  margin-bottom: 0;
}

.ccm-alt-img-col img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f1f1;
}

.ccm-alt-text-col {
  display: flex;
  flex-direction: column;
}

.ccm-alt-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ccm-alt-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
}

.ccm-alt-list li i.fa-circle-xmark {
  color: #ff5b5b;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.ccm-alt-list li i.fa-circle-check {
  color: #f57e20;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.ccm-alt-list li strong {
  color: #0d0d0d;
}

/* How It Works - Stepper timeline line flow */
.ccm-hiw-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.ccm-stepper-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
}

.ccm-stepper-row::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #eaeaea;
  z-index: 1;
}

.ccm-stepper-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.ccm-stepper-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #eaeaea;
  color: #0d0d0d;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.ccm-stepper-item:hover .ccm-stepper-icon {
  border-color: #f57e20;
  color: #f57e20;
  box-shadow: 0 0 0 6px rgba(245, 126, 32, 0.12);
  transform: scale(1.05);
}

.ccm-stepper-item h5 {
  font-size: 16px;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 8px;
}

.ccm-stepper-item p {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Key Features Grid - List row blocks */
.ccm-features-section {
  padding: 80px 0;
  background: #ffffff;
}

.ccm-feature-row {
  margin-top: 40px;
}

.ccm-feature-block {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #eaeaea;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.ccm-feature-block:hover {
  border-bottom-color: #f57e20;
  transform: translateX(6px);
}

.ccm-feature-block-icon {
  font-size: 22px;
  color: #f57e20;
  flex-shrink: 0;
  margin-top: 2px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(245, 126, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ccm-feature-block:hover .ccm-feature-block-icon {
  background: #f57e20;
  color: #ffffff;
}

.ccm-feature-block-content h5 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0d0d0d;
}

.ccm-feature-block-content p {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Business Benefits Columns */
.ccm-benefits-minimal {
  padding: 80px 0;
  background: #f8f9fb;
}

.ccm-benefit-col-clean {
  border-left: 3px solid #eaeaea;
  padding-left: 24px;
  transition: all 0.3s ease;
  height: 100%;
}

.ccm-benefit-col-clean:hover {
  border-left-color: #f57e20;
}

.ccm-benefit-col-clean h5 {
  font-size: 18px;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 10px;
}

.ccm-benefit-col-clean p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* Premium CTA Section */
.ccm-cta-container-premium {
  padding: 80px 0;
  background: #ffffff;
}

.ccm-cta-card-floating {
  background: #0d0d0d;
  border-radius: 30px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  z-index: 1;
}

.ccm-cta-card-floating::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(245, 126, 32, 0.12) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  z-index: -1;
  pointer-events: none;
}

.ccm-cta-glow-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #f57e20;
  opacity: 0.15;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}

.ccm-cta-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: #e06010;
  opacity: 0.12;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}

.ccm-cta-card-floating h3 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.ccm-cta-card-floating h3 span {
  color: #f57e20;
}

.ccm-cta-card-floating p {
  font-size: 16px;
  color: #b0b0b0;
  margin-bottom: 35px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.ccm-cta-btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f57e20;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  /* box-shadow: 0 10px 25px rgba(245, 126, 32, 0.3); */
  position: relative;
  z-index: 2;
  border: none;
}

.ccm-cta-btn-premium:hover {
  background: #ffffff;
  color: #0d0d0d;
  transform: translateY(-4px);
  /* box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25); */
}

.ccm-cta-btn-premium i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.ccm-cta-btn-premium:hover i {
  transform: translateX(4px);
}

/* Sticky Sidebar Override */
.si-sidebar-box-custom {
  position: sticky;
  top: 100px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .ccm-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
  }
  .ccm-stat-item:last-child {
    border-bottom: none;
  }
  .ccm-alt-row {
    flex-direction: column !important;
    gap: 30px;
    margin-bottom: 50px;
  }
  .ccm-stepper-row {
    flex-direction: column;
    gap: 30px;
  }
  .ccm-stepper-row::before {
    display: none;
  }
}

/* ========== CAREER JOB DETAIL v2 ========== */
.htech-career-detail {
  padding: 56px 0 80px;
}

/* ---- Job Header ---- */
.htech-job-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.htech-job-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #f57e20;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  margin-bottom: 14px;
  transition: gap 0.2s;
}
.htech-job-back:hover {
  gap: 12px;
  color: #f57e20;
}
.htech-job-header__title {
  font-size: 36px;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.15;
  margin: 0 0 16px;
}
.htech-job-header__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.htech-job-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #f57e20;
  background: rgba(245, 126, 32, 0.08);
  border: 1px solid rgba(245, 126, 32, 0.25);
  padding: 5px 14px;
  border-radius: 20px;
}
.htech-job-pill i {
  font-size: 11px;
}

.htech-job-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}
.htech-job-header__meta {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f7f9fc;
  border: 1px solid #e4eaf0;
  border-radius: 10px;
  overflow: hidden;
}
.htech-job-header__meta-item {
  display: flex;
  flex-direction: column;
  padding: 12px 22px;
  gap: 3px;
}
.htech-job-header__meta-divider {
  width: 1px;
  height: 36px;
  background: #e4eaf0;
}
.htech-job-header__meta-label {
  font-size: 10.5px;
  font-weight: 600;
  color: #8fa3b1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.htech-job-header__meta-value {
  font-size: 13.5px;
  font-weight: 700;
  color: #0d1b2a;
}
.htech-job-apply-btn {
  white-space: nowrap;
}

.htech-job-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    #f57e20 0%,
    rgba(245, 126, 32, 0.1) 60%,
    transparent 100%
  );
  border-radius: 2px;
  margin-bottom: 48px;
}

/* ---- Body Layout ---- */
.htech-job-body {
  align-items: flex-start;
}
.htech-job-main {
  padding-right: 24px;
}

/* ---- Content Sections ---- */
.htech-job-section {
  margin-bottom: 48px;
}
.htech-job-section__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  color: #0d1b2a;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2f7;
}
.htech-job-section__dot {
  width: 10px;
  height: 10px;
  background: #f57e20;
  border-radius: 50%;
  flex-shrink: 0;
}
.htech-job-section__text {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.85;
  margin: 0;
}

/* Numbered responsibility list */
.htech-job-resp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.htech-job-resp-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #f7f9fc;
  border-left: 3px solid transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
  font-size: 14.5px;
  color: #4a5568;
  line-height: 1.6;
}
.htech-job-resp-list li:hover {
  border-left-color: #f57e20;
  background: #fff9f5;
}
.htech-job-resp__num {
  font-size: 11px;
  font-weight: 800;
  color: #f57e20;
  background: rgba(245, 126, 32, 0.1);
  border-radius: 5px;
  padding: 3px 7px;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: monospace;
}

/* ---- Sidebar Aside Blocks ---- */
.htech-job-aside {
  padding-left: 8px;
}
.htech-aside-block {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
}
.htech-aside-block__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2f7;
}
.htech-aside-block__title i {
  color: #f57e20;
  font-size: 14px;
}

/* Skills */
.htech-skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.htech-skill-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.5;
}
.htech-skill-list li i {
  color: #f57e20;
  font-size: 9px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Orange block */
.htech-aside-block--orange {
  background: #fff9f4;
  border-color: rgba(245, 126, 32, 0.18);
}
.htech-benefit-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.htech-benefit-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #2d3748;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid rgba(245, 126, 32, 0.15);
  border-radius: 8px;
}
.htech-benefit-chip i {
  width: 22px;
  height: 22px;
  background: #f57e20;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* Schedule block */
.htech-aside-block--schedule {
  background: #0d1b2a;
  border-color: #0d1b2a;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.htech-schedule-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.htech-schedule-row > i {
  width: 38px;
  height: 38px;
  background: rgba(245, 126, 32, 0.15);
  border: 1px solid rgba(245, 126, 32, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f57e20;
  font-size: 15px;
  flex-shrink: 0;
}
.htech-schedule-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8fa3b1;
  margin-bottom: 2px;
}
.htech-schedule-value {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.htech-aside-block--schedule .htech-aside-block__title {
  display: none;
}

/* Responsive */
@media (max-width: 991px) {
  .htech-job-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .htech-job-header__right {
    align-items: flex-start;
    width: 100%;
  }
  .htech-job-header__meta {
    flex-wrap: wrap;
  }
  .htech-job-main {
    padding-right: 0;
    margin-bottom: 32px;
  }
  .htech-job-aside {
    padding-left: 0;
  }
  .htech-job-header__title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .htech-job-header__title {
    font-size: 22px;
  }
  .htech-job-header__meta {
    width: 100%;
  }
  .htech-aside-block {
    padding: 22px 18px;
  }
}
/* ========== END CAREER JOB DETAIL v2 ========== */

/* Accessibility & Focus Visible Enhancements */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #f57e20 !important;
  outline-offset: 2px !important;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
}

/* Prevent horizontal overflow on narrow mobile viewports */
html,
body {
  overflow-x: hidden;
}

.si-ref-card-body,
.htech-contact-form-card,
.htech-contact-sidebar {
  overflow-wrap: break-word;
  word-break: break-word;
}
/* ==========================================================================
   UNIFIED HEADINGS (Sentence Case & Consistent Size)
   Requested headings match 'Who we are' size, with 25px on mobile
   ========================================================================== */
.htech-unified-heading {
  font-size: clamp(25px, 5vw, 64px) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  text-transform: none !important;
}

/* Tablet breakpoint: 768px – 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .htech-unified-heading {
    font-size: clamp(25px, 4vw, 44px) !important;
  }
}

/* Mobile breakpoint: < 768px */
@media (max-width: 767px) {
  .htech-unified-heading {
    font-size: 25px !important;
    letter-spacing: -0.3px !important;
  }
}
/* ==========================================================================
   INNER PAGE SUBHEADINGS
   Matches 'si-product-details-title' font size as requested
   ========================================================================== */
.htech-inner-subheading {
  font-size: clamp(24px, 3.5vw, 36px) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-transform: none !important;
}
/* ==========================================================================
   SIDEBAR SPACING ON MOBILE
   Adds margin below the products/services list to separate from content
   ========================================================================== */
@media (max-width: 991px) {
  .si-sidebar-box-custom {
    margin-bottom: 40px !important;
  }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE FIXES
   1. Height increase for breadcrumb hero section
   2. Hide magic cursor (black dot) on mobile & tablet
   3. Navbar padding for hamburger button (scroll bar separation)
   ========================================================================== */

/* 1. Breadcrumb Hero Section Height Increase on Mobile & Tablet */
@media (max-width: 767px) {
  .si__breadcumb__area {
    padding-top: 145px !important;
    padding-bottom: 65px !important;
    min-height: 250px !important;
    display: flex !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .si__breadcumb__area {
    padding-top: 160px !important;
    padding-bottom: 75px !important;
    min-height: 280px !important;
    display: flex !important;
    align-items: center !important;
  }
}

/* 2. Hide Magic Cursor (Black Dot) on Mobile & Tablet (< 992px) */
@media (max-width: 991px) {
  #magic-cursor,
  #ball,
  .cursor-black-bg,
  .cursor-theme-bg,
  .ball-view {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body,
  a,
  button,
  input,
  select,
  textarea {
    cursor: auto !important;
  }
}

/* 3. Mobile Navbar Right Padding (Separation from Browser Scrollbar) */
@media (max-width: 991px) {
  .si-header-area .container,
  .si-header-area .container-1650 {
    padding-right: 25px !important;
    padding-left: 20px !important;
  }
  .si-header-right {
    padding-right: 10px !important;
  }
}

/* ===== OFFCANVAS CONTACT US BUTTON: 80% WIDTH CENTERED ===== */
.si-offcanvas-cta,
.si-offcanvas-wrapper .si-offcanvas-cta {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.si-offcanvas-cta .si-offcanvas-btn,
.si-offcanvas-cta.si__contact__btn a,
.si-offcanvas-wrapper .si-offcanvas-cta .si-offcanvas-btn,
.si-offcanvas-wrapper .si-offcanvas-cta.si__contact__btn a {
  width: 90% !important;
  max-width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ==========================================================================
   CAREER DETAIL CARD UI ENHANCEMENT (COMPACT RESPONSIVE SPACING)
   ========================================================================== */
.htech-career-detail {
  padding: 40px 0 24px !important;
  background: #f8fafc !important;
}

.htech-career-detail__header {
  background: #ffffff !important;
  border: 1px solid rgba(18, 18, 18, 0.08) !important;
  border-radius: 16px !important;
  padding: 24px 28px !important;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.04) !important;
  margin-bottom: 20px !important;
}

.htech-career-detail__header h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  color: #0f172a !important;
}

.htech-career-detail__section {
  background: #ffffff !important;
  border: 1px solid rgba(18, 18, 18, 0.08) !important;
  border-radius: 16px !important;
  padding: 24px 28px !important;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.04) !important;
  margin-top: 0 !important;
  margin-bottom: 18px !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
}

.htech-career-detail__section::before {
  display: none !important;
}

.htech-career-detail__section h3 {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  margin-bottom: 14px !important;
  padding-bottom: 8px !important;
  color: #0f172a !important;
  border-bottom: 2px solid rgba(245, 126, 32, 0.18) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.htech-career-detail__section h3::before {
  content: "" !important;
  display: inline-block !important;
  width: 4px !important;
  height: 16px !important;
  background: #f57e20 !important;
  border-radius: 4px !important;
}

.htech-career-detail__section p {
  color: #475569 !important;
  font-size: var(--htech-fs-content) !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

.htech-career-detail__section ul {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.htech-career-detail__section li {
  position: relative !important;
  padding-left: 26px !important;
  margin-bottom: 0 !important;
  color: #334155 !important;
  font-size: var(--htech-fs-content) !important;
  line-height: 1.55 !important;
}

.htech-career-detail__section li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 3px !important;
  width: 17px !important;
  height: 17px !important;
  border-radius: 50% !important;
  background-color: rgba(245, 126, 32, 0.12) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f57e20'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") !important;
  background-size: 11px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Application Form Section Compact Spacing */
.htech-apply-form-area {
  padding: 24px 0 50px !important;
  background: #f7f8fb !important;
  scroll-margin-top: 80px !important;
}

.htech-apply-form-card {
  max-width: 720px !important;
  margin: 0 auto !important;
  background: #fff !important;
  border-radius: 16px !important;
  padding: 28px 32px 24px !important;
  border: 1px solid rgba(18, 18, 18, 0.08) !important;
  box-shadow: 0 12px 40px rgba(245, 126, 32, 0.08) !important;
}

.htech-apply-form-header {
  margin-bottom: 20px !important;
}

.htech-apply-form-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem) !important;
  color: var(--si-common-black) !important;
  margin-bottom: 6px !important;
}

.htech-apply-form-stepper {
  margin-bottom: 20px !important;
}

/* Tablet & Mobile Viewport Responsive Spacing */
@media (max-width: 991px) {
  .htech-career-detail {
    padding: 28px 0 18px !important;
  }
  .htech-career-detail__header {
    padding: 18px 20px !important;
    margin-bottom: 14px !important;
    border-radius: 14px !important;
  }
  .htech-career-detail__section {
    padding: 18px 20px !important;
    margin-bottom: 14px !important;
    border-radius: 14px !important;
  }
  .htech-apply-form-area {
    padding: 18px 0 40px !important;
  }
  .htech-apply-form-card {
    padding: 22px 20px 20px !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 575px) {
  .htech-career-detail {
    padding: 20px 0 12px !important;
  }
  .htech-career-detail__header,
  .htech-career-detail__section {
    padding: 14px 14px !important;
    margin-bottom: 12px !important;
    border-radius: 12px !important;
  }
  .htech-apply-form-area {
    padding: 14px 0 30px !important;
  }
  .htech-apply-form-card {
    padding: 18px 14px 18px !important;
    border-radius: 12px !important;
  }
}

/* ==========================================================================
   NAVBAR MENU ITEMS: ACTIVE & TOUCH/TAP STATE COLORS (MOBILE, TABLET & DESKTOP)
   ========================================================================== */
.si-header-menu nav > ul > li > a:hover,
.si-header-menu nav > ul > li > a:active,
.si-header-menu nav > ul > li > a:focus,
.si-header-menu nav > ul > li.active > a,
.si-header-dropdown nav > ul > li > a:hover,
.si-header-dropdown nav > ul > li > a:active,
.si-header-dropdown nav > ul > li > a:focus,
.si-header-dropdown nav > ul > li.active > a,
.dropdown-white-bg nav > ul > li > a:hover,
.dropdown-white-bg nav > ul > li > a:active,
.dropdown-white-bg nav > ul > li > a:focus,
.dropdown-white-bg nav > ul > li.active > a {
  color: #f57e20 !important;
}

/* Desktop View: Submenu/Dropdown Hover Links Text Color White */
@media (min-width: 1200px) {
  .si-submenu li a:hover,
  .si-header-dropdown nav ul li .si-submenu li:hover > a,
  .dropdown-white-bg nav ul li .si-submenu li:hover > a,
  .si-header-menu .si-submenu li a:hover {
    color: #ffffff !important;
    background-color: #f57e20 !important;
  }
}

.si-submenu li.active > a {
  color: #f57e20 !important;
}

.si-offcanvas-menu nav ul li a:hover,
.si-offcanvas-menu nav ul li a:active,
.si-offcanvas-menu nav ul li a:focus,
.si-offcanvas-menu nav ul li.active > a,
.si-offcanvas-wrapper .si-offcanvas-menu ul li > a:hover,
.si-offcanvas-wrapper .si-offcanvas-menu ul li > a:active,
.si-offcanvas-wrapper .si-offcanvas-menu ul li > a:focus,
.si-offcanvas-wrapper .si-offcanvas-menu ul li.active > a,
.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-menu ul li > a:hover,
.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-menu ul li > a:active,
.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-menu ul li > a:focus,
.si-offcanvas-wrapper.offcanvas-black-bg .si-offcanvas-menu ul li.active > a {
  color: #f57e20 !important;
}

.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li a:active,
.mean-container .mean-nav ul li a:focus,
.mean-container .mean-nav ul li.active > a,
.mean-container .mean-nav ul li a.mean-expand:hover,
.mean-container .mean-nav ul li a.mean-expand:active,
.mean-container .mean-nav ul li a.mean-expand:focus,
.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: #f57e20 !important;
}

/* ==========================================================================
   OFFCANVAS LOGO ALIGNMENT (PERFECT MATCH WITH NAVBAR LOGO)
   ========================================================================== */
.si-offcanvas-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.si-offcanvas-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.si-offcanvas-logo a {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

.si-offcanvas-close-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  margin: 0 !important;
  line-height: 1 !important;
}

/* Responsive padding for offcanvas wrapper to match navbar logo position */
@media (min-width: 1200px) {
  .si-offcanvas-wrapper {
    padding-top: 36px !important;
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .si-offcanvas-wrapper {
    padding-top: 30px !important;
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}

@media (max-width: 991px) {
  .si-offcanvas-wrapper {
    padding-top: 12px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
