/*CSS Table Of Content Ends Here*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Poppins:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {

  --primary: rgb(35, 35, 35);
  --secondary: rgb(227, 29, 36);
  --light: rgb(255, 255, 255);
  --sub-light: rgb(242, 242, 242);

  --body: #fff;
  --black: #000;

  --theme: #e11d07;
  --text: #b01705;
  /* --theme2: #18185E; */
  --theme-color3: #F98600;
  --header: #0F0D1D;
  --text: #585858;
  --text-2: #ffffffcc;
  --border: #E3E3E3;
  --border2: #242449;
  --border3: #5262FF;
  --bg: #F3F7FB;
  --bg2: #b01705;
  --bg3: #ffffff33;
  --title-color: #0F0D1D;
  --body-color: #ffffff;
  --smoke-color: #F3F7FB;
  --smoke-color2: #CFD3FC;
  --smoke-color3: #F7F7F7;
  --smoke-color4: #E0E0E0;
  --black-color: #000000;
  --gray-color: #F5F5F5;
  --white: #ffffff;
  --white: #BDBDBD;
  --text-color: #445375;
  --text-color2: #4F536C;
  --border-color: #D4DCFF;
  --title-font: "Rajdhani", sans-serif;
  --body-font: "Plus Jakarta Sans", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1410px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
  --box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  --box-shadow-2: 0px 4px 25px rgba(56, 75, 255, 0.1);
}

.text {
  color: #b01705;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}



/* Theme Btn */
.theme-btn {
  overflow: hidden;
  background-color: var(--theme);
  color: #FFFFFF;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  line-height: 1;
  padding: 18px 28px;
  cursor: pointer;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.theme-btn i {
  margin-left: 10px;
}

.theme-btn:hover {
  color: #FFFFFF;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.theme-btn:hover::before,
.theme-btn:hover::after {
  width: 100%;
}

.theme-btn.hover-white::before,
.theme-btn.hover-white::after {
  background-color: #FFFFFF;
}

.theme-btn.hover-white:hover {
  color: var(--header);
}

.theme-btn.bg-white {
  background-color: #FFFFFF;
  color: var(--header);
}

.theme-btn.bg-white:hover {
  color: #FFFFFF;
}

.theme-btn.border-white {
  border: 1px solid #FFFFFF;
  background-color: transparent;
}

.theme-btn.border-white::before,
.theme-btn.border-white::after {
  background-color: #FFFFFF;
}

.theme-btn.border-white:hover {
  color: var(--header) !important;
}

@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}

@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.theme-btn-2 {
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  color: var(--theme);
  border-radius: 10px;
  border: 2px solid var(--theme);
  padding: 10px;
  text-transform: capitalize;
}

.theme-btn-2 i {
  margin-left: 10px;
}

.theme-btn-2:hover {
  background-color: var(--theme);
  color: #FFFFFF;
}


/* --------------------------------------------
    Template  Styles
 ---------------------------------------------- */

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth !important;
}

body {
  /* font-family: "Plus Jakarta Sans", sans-serif; */
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;

}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

/* Links */
a {
  text-decoration: none;
  color: #dc3545;
  /* accent color */
}

a:hover {
  color: #a00013;
}

/* Buttons / CTAs */
button,
.btn {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}

body .theme-red,
body.theme-red {
  --theme-color: #F02801;
  --theme-color2: #FFC000;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-track {
  background: rgba(252, 0, 18, 0.1);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--theme);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 25%, transparent 20%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
}

iframe {
  border: none;
  width: 100%;
}

button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

button {
  border: none;
  background: transparent;
}

input:focus {
  outline: none;
  box-shadow: none;
}

input::-moz-placeholder {
  color: var(--text-color) !important;
}

input::placeholder {
  color: var(--text-color) !important;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
  padding-left: 0px !important;
}

ol {
  list-style-type: decimal;
}

ul li a {
  cursor: pointer;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme);
  text-decoration: none;
  outline: 0;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -ms-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
}

a:hover {
  color: var(--title-color);
}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

p,
ul,
ul li {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 0;
  color: var(--text-color);
  line-height: 1.75;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}

.h1,
h1 {
  font-size: 64px;
  line-height: 1.167;
}

.h2,
h2 {
  font-size: 40px;
  line-height: 50px;
}

.h3,
h3 {
  font-size: 30px;
  line-height: 1.278;
}

.h4,
h4 {
  font-size: 24px;
  line-height: 34px;
}

.h5,
h5 {
  font-size: 20px;
  line-height: 30px;
}

.h6,
h6 {
  font-size: 18px;
  line-height: 1.5;
}

/* Medium Large devices */
@media (max-width: 1399px) {

  .h1,
  h1 {
    font-size: 48px;
  }
}

/* Large devices */
@media (max-width: 1199px) {

  .h1,
  h1 {
    font-size: 44px;
    line-height: 1.3;
  }

  .h2,
  h2 {
    font-size: 40px;
    line-height: 1.25;
  }

  .h3,
  h3 {
    font-size: 30px;
  }

  .h4,
  h4 {
    font-size: 24px;
  }

  .h5,
  h5 {
    font-size: 20px;
  }

  .h6,
  h6 {
    font-size: 16px;
  }
}

/* Small devices */
@media (max-width: 767px) {

  .h1,
  h1 {
    font-size: 40px;
  }

  .h2,
  h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .h3,
  h3 {
    font-size: 26px;
  }

  .h4,
  h4 {
    font-size: 22px;
  }

  .h5,
  h5 {
    font-size: 18px;
  }

  .h6,
  h6 {
    font-size: 16px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {

  .h1,
  h1 {
    font-size: 34px;
    line-height: 1.35;
  }

  .h2,
  h2 {
    font-size: 30px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {

  .h1,
  h1 {
    font-size: 32px;
  }
}



/* About Page */

.about-wrapper .about-image-items {
  position: relative;
}


.about-wrapper .about-image-items .counter-shape {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background-color: #FFFFFF;
  box-shadow: var(--box-shadow);
  position: absolute;
  bottom: 30px;
  left: -50px;
  z-index: 1;
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .counter-shape {
    left: 0;
  }
}

.about-wrapper .about-image-items .counter-shape .content h3 {
  font-size: 28px;
  font-weight: bold;
}

.about-wrapper .about-image-items .about-image-1 {
  max-width: 415px;
  height: 445px;
  position: relative;
}

@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image-1 {
    max-width: 560px;
  }
}

.about-wrapper .about-image-items .about-image-1 .about-image-2 {
  position: absolute;
  bottom: -13%;
  right: -35%;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    right: -20%;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    width: 200px;
    bottom: 0;
    right: -10%;
  }

  .about-wrapper .about-image-items .about-image-1 .about-image-2 img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    bottom: -13%;
    right: -35%;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    width: 140px;
    bottom: initial;
    top: 0;
    right: 0;
  }
}

.about-wrapper .about-image-items .about-image-1::after {
  content: "";
  width: 100%;
  height: 88%;
  position: absolute;
  right: -55px;
  top: 20%;
  border: 3px solid var(--theme);
  z-index: -1;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image-1::after {
    right: -30px;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image-1::after {
    width: 100%;
    height: 88%;
    right: -55px;
    top: 20%;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image-1::after {
    display: none;
  }
}

.about-wrapper .about-content .about-icon-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 40px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-icon-items {
    flex-wrap: wrap;
    padding-bottom: 30px;
    margin-top: 30px;
  }
}


.about-wrapper.style-2 .about-image-items .circle-shape {
  position: absolute;
  top: 0;
  right: 25%;
  animation: cir36 10s linear infinite;
}

.about-wrapper.style-2 .about-image-items .counter-shape {
  background-color: var(--theme);
  bottom: -70px;
  left: 30px;
}

@media (max-width: 991px) {
  .about-wrapper.style-2 .about-image-items .counter-shape {
    bottom: 20px;
  }
}

.about-wrapper.style-2 .about-image-items .counter-shape .icon {
  filter: grayscale(100%) brightness(300%);
}

.about-wrapper.style-2 .about-image-items .counter-shape .content h3 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
}

.about-wrapper.style-2 .about-image-items .counter-shape .content h3 span {
  font-size: 28px;
  font-weight: bold;
  margin-right: 5px;
}

.about-wrapper.style-2 .about-image-items .counter-shape .content p {
  font-size: 14px;
  color: #FFFFFF;
}

.about-wrapper.style-2 .about-image-items .about-image-1 {
  max-width: 386px;
  height: 415px;
}

@media (max-width: 991px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 550px;
    height: 530px;
  }
}

@media (max-width: 767px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 450px;
    height: 415px;
  }
}

@media (max-width: 575px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 550px;
    height: 500px;
  }
}

.about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
  border: 10px solid #FFFFFF;
  box-shadow: var(--box-shadow);
  right: -40%;
}

@media (max-width: 1199px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
    right: -20%;
  }
}

@media (max-width: 575px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
    right: 0;
  }
}

.about-wrapper.style-2 .about-image-items .about-image-1::after {
  display: none;
}

.about-wrapper.style-2 .about-content .about-icon-items .icon-items .icon {
  background-color: #FFFFFF;
  color: var(--theme);
}

.about-wrapper-2 {
  margin-bottom: -30px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 {
    margin-bottom: 0;
  }
}

@media (max-width: 1199px) {
  .about-wrapper-2 {
    margin-bottom: -10px;
  }
}



.rotate360 {
  animation: rotate360 10s linear infinite;
  -webkit-animation: rotate360 10s linear infinite;
}


@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

  0% {
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
  }

  75% {
    border-top-color: #fff;
    border-left-color: #fff;
    border-right-color: #fff;
    border-bottom-color: transparent;
  }

  100% {
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
  }
}

.bg-anime-scratch {
  animation: scratch 4s linear infinite;
  overflow: hidden;
}



.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 1.3s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.swiper-slide-active .fadein {
  --animation-name: fadein;
}

.swiper-slide-active .scalein {
  --animation-name: scalein;
}

.swiper-slide-active .slidetopleft {
  --animation-name: slidetopleft;
}

.swiper-slide-active .slidebottomright {
  --animation-name: slidebottomright;
}

.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}

.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}

.swiper-slide-active .rollinleft {
  --animation-name: rollinleft;
}

.swiper-slide-active .rollinright {
  --animation-name: rollinright;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scalein {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}

@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(120px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    transform: rotate(20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-30px);
  }
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }

  to {
    -webkit-mask-position: -50%;
  }
}

@keyframes bounce-x {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0);
  }
}

.bounce-x {
  animation: bounce-x 7s infinite linear;
}




/* Navigation Menu CSS */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* padding: 12px 0; */
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}


.header.scrolled {
  background: #fff !important;
  border-bottom: 2px solid #d32f2f;
}

.logo-dark,
.logo-light {
  max-height: 75px;
  display: none;
}

/* Show dark logo when user prefers dark mode */
@media (prefers-color-scheme: dark) {
  .logo-dark {
    display: inline;
  }
}

/* Show light logo when user prefers light mode */
@media (prefers-color-scheme: light) {
  .logo-light {
    display: inline;
  }
}

@media (max-width: 344px) {
  .navbar .navbar-brand img {

    max-height: 64px !important;
  }
}

@media (min-width: 345px) and (max-width: 370px) {
  .navbar .navbar-brand img {

    max-height: 69px !important;
  }
}

@media (min-width: 371px) and (max-width: 400px) {
  .navbar .navbar-brand img {

    max-height: 73px !important;
  }
}

.nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
  font-size: 17px;
}

.nav-link:hover {
  color: #e11d07 !important;
}

.header.scrolled .nav-link {
  color: #333 !important;
}



/* Dropdown Menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;

  min-width: 200px;
}

/* Dropdown Items */
.dropdown-item {
  color: #333;
  padding: 10px 20px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #e11d07;
  color: #fff;

}

/* Open dropdown on hover (desktop only) */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}


.btn-outline-primary {
  border: none;
  background-color: #e11d07;
  color: #fff;
}

.btn-outline-primary:hover {
  background: black;
  color: #fff;
  border: none;
}

/* Main mobile nav links */
.mobile-nav-link {
  display: block;
  padding: 10px 0;
  color: #333;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: #e11d07;
}

/* Dropdown container (hidden by default) */
.mobile-dropdown {
  display: none;
  padding-left: 15px;
}

/* Dropdown links */
.mobile-dropdown-link {
  display: block;
  padding: 8px 0;
  color: #555;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-dropdown-link:hover {
  color: #e11d07;
}



.header.scrolled {
  background: #fff !important;
}


.header.scrolled .nav-link {
  color: #333 !important;
}


.header.scrolled .navbar-toggler i {
  color: #333 !important;
}

/* Navbar Toggler (Mobile Devices) */
.navbar-toggler {
  border: none;
  outline: none !important;
  /* padding: 8px 12px; */
  background: transparent;
}

.navbar-toggler i {
  color: #fff;
  font-size: 30px !important;
  transition: color 0.3s;
}

.header.scrolled .navbar-toggler i {
  color: red !important;
}


/* Breadcrumb Style */
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.breadcrumb-wrapper .container {
  position: relative;
  z-index: 1;
}

.breadcrumb-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(270.07deg, #B30016 0.07%, #8B000F 99.95%); */
  opacity: 0.75;
  z-index: 0;
}

/* Make sure content is above the overlay */
.breadcrumb-wrapper .container,
.breadcrumb-wrapper h1,
.breadcrumb-wrapper ul {
  position: relative;
  z-index: 1;
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 84px 0;
  text-align: center;
  z-index: 9;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding: 79px 0;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 85px 0;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    padding: 100px 0;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading {
    padding: 99px 0;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: #FFFFFF;
  font-size: 65px;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 52px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: #FFFFFF;
  text-transform: capitalize;
  font-weight: 600;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: #FFFFFF;
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: #FFFFFF;
}

.breadcrumb-wrapper .border-shape {
  position: absolute;
  top: 20px;
  left: 0;
}

.breadcrumb-wrapper .line-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.breadcrumb-wrapper .line-shape img {
  width: 100%;
  height: 100%;
}

.error-items {
  text-align: center;
}

.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.error-items h2 {
  margin-top: 30px;
  margin-bottom: 40px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}


@media (max-width: 575px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  /* height: 300px; */
}


.mt-30 {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .mt-30 {
    margin-top: 0;
  }
}



/* Home About */




.about-img-warp {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
}


.heading-subtitle {
  font-size: 17px;
  color: #b01705;

}

.heading-title {
  font-size: 32px;
  font-weight: 700;
  color: #1d3557;
  /* margin-bottom: 15px; */
}


.block-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #343a40;
  margin-bottom: 15px;
}

.block-right .detail {
  margin-bottom: 20px;
}

.block-right h6 {
  font-size: 16px;
  font-weight: 600;
  color: #1d3557;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.block-right p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.5;
}


.founder-quote blockquote {
  border-left: 4px solid #e63946;
  padding-left: 15px;
  margin-top: 30px;
  font-style: italic;
  color: #495057;
}

.founder-quote footer {
  margin-top: 10px;
  font-weight: 600;
  color: #1d3557;
}


@media (max-width: 991px) {
  .about-img-warp {
    height: 300px;
  }

  .heading-title {
    font-size: 28px;
  }

  .block-left p,
  .block-right p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .about {
    padding-top: 50px;
  }

  .about-img-warp {
    height: 250px;
  }

  .heading-title {
    font-size: 24px;
  }

  .heading-subtitle {
    font-size: 14px;
  }

  .block-left p,
  .block-right p {
    font-size: 14px;
  }

  .block-right h6 {
    font-size: 15px;
  }

  .founder-quote blockquote {
    font-size: 14px;
  }
}

/* Home Services */

.service-card-items:hover {
  transform: translateY(-5px);
  transition: 0.3s ease-in-out;
}

.service-card-items h5 a:hover {
  color: #dc3545;
  /* accent color on hover */
}

.service-card {
  display: block;
  text-align: center;
  padding: 15px 10px;
  border: 2px solid var(--bg2);
  border-radius: 12px;
  background: #fff;
  color: var(--dark-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-decoration: none;
}

.service-card .icon {
  font-size: 42px;
  color: var(--theme);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-card span {
  font-size: 18px;
  font-weight: 600;
  color: var(--bg2);
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
  color: var(--dark-color);
  margin: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--theme);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-card:hover .icon {
  color: var(--theme);
}

/* All Services */

.news-wrapper {
  padding: 0 75px;
}

@media (max-width: 1199px) {
  .news-wrapper {
    padding: 0;
  }
}


.news-card-items {
  margin-top: 30px;
}

.news-card-items .news-image {
  position: relative;
}

.news-card-items .news-image img {
  width: 100%;
  height: 100%;
}


.news-card-items .news-content {
  padding: 30px;
  background-color: #FFFFFF;
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 9;
  margin-right: 40px;
  margin-top: -40px;
}

.news-card-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .news-card-items .news-content ul {
    gap: 20px;
  }
}

.news-card-items .news-content ul li {
  font-size: 14px;
  font-weight: 500;
}

.news-card-items .news-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}

.news-card-items .news-content h3 {
  font-weight: bold;
  margin-bottom: 5px;
}

.news-card-items .news-content h3 a {
  color: var(--title-color);
}

.news-card-items .news-content h3 a:hover {
  color: var(--theme);
}

.news-card-items.style-2 {
  padding-bottom: 50px;
}

.news-card-items.style-2 .news-image {
  position: relative;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.news-card-items.style-2 .news-image img {
  border-radius: 15px 15px 0px 0px;
  -webkit-border-radius: 15px 15px 0px 0px;
  -moz-border-radius: 15px 15px 0px 0px;
  -ms-border-radius: 15px 15px 0px 0px;
  -o-border-radius: 15px 15px 0px 0px;
}


.news-card-items.style-2 .news-content {
  margin: 0;
  border-radius: 0px 0px 15px 15px;
  -webkit-border-radius: 0px 0px 15px 15px;
  -moz-border-radius: 0px 0px 15px 15px;
  -ms-border-radius: 0px 0px 15px 15px;
  -o-border-radius: 0px 0px 15px 15px;
}

.news-card-items.style-2 .news-content ul li {
  font-size: 16px;
  color: var(--text-color);
}

.news-card-items.style-3 {
  padding-bottom: 0;
  background-color: #FFFFFF;
  box-shadow: none;
}

.news-card-items.style-3 .news-image {
  padding: 15px 15px 0 15px;
}

.news-card-items.style-3 .content {
  box-shadow: none;
}


/* Others Services */

.main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  background-color: var(--bg);
  margin-bottom: 30px;
}

.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}



.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
  background-color: #FFFFFF;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--header);
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
  background-color: var(--theme);
  color: #FFFFFF;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: #FFFFFF;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: #FFFFFF;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
  background-color: var(--theme);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
  color: #FFFFFF;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
  color: #FFFFFF;
}


.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}



.title-wrap {
  display: grid;
  align-items: end;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  /* Small devices */
}

.title-wrap .title-area {
  max-width: 645px;
  margin: 0;
}

@media (max-width: 767px) {
  .title-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    justify-content: start;
  }
}

.section-title {
  position: relative;
  z-index: 8;
}

.section-title span {
  color: var(--theme);
}

.section-title .subtitle {
  display: flex;
  align-items: center;
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 30px;
}

.section-title .subtitle span {
  margin: 0 10px;
}

.section-title .title {
  color: var(--title-color);
  font-family: var(--title-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.96px;
  text-transform: capitalize;
}



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

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

.section-bg-2 {
  background-color: var(--bg2);
}

.section-padding {
  padding: 10px 0;
  /* background-color: red; */
}

.marque-section-padding {
  background-color: #130eb8;
  padding: 0px 0
}

@media (max-width: 1199px) {
  .section-padding {
    /* padding: 100px 0; */
  }
}

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

/* Services Style */
.service-wrapper {
  margin-bottom: 187px;
}

.service-wrapper .service-text {
  margin-top: 50px;
  text-align: center;
}

.service-wrapper .service-text h6 {
  font-size: 16px;
}

.service-wrapper .service-text h6 a {
  font-weight: 600;
  color: var(--theme);
  text-decoration: underline;
}

.service-card-items {
  margin-top: 30px;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.service-card-items .icon-2 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  opacity: 0.2;
}

.service-card-items .service-image img {
  width: 100%;
  height: auto;
  /* Keep aspect ratio */
  display: block;
}

.service-card-items .service-content {
  padding: 20px 5px;
  position: relative;
  z-index: 1;
}

.service-card-items .service-content .icon {
  width: 70px;
  height: 70px;
  line-height: 65px;
  text-align: center;
  border-radius: 8px;
  background-color: var(--theme);
  margin-bottom: 30px;
  margin-top: -70px;
  transition: all 0.4s ease-in-out;
  transition: transform 500ms ease;
}

.service-card-items .service-content .icon img {
  filter: grayscale(100%) brightness(300%);
}

.service-card-items .service-content h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card-items .service-content h4 a {
  color: var(--title-color);
}

.service-card-items .service-content h4 a:hover {
  color: var(--theme);
}

.service-card-items:hover .icon {
  transform: scaleX(-1);
}

.service-section-3 {
  position: relative;
}

.service-section-3 .line-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.service-section-3 .line-shape-2 img {
  width: 100%;
  height: 100%;
}

.service-details-section {
  padding: 0px;
}

.service-details-wrapper .service-details-items .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

/* .service-details-wrapper .service-details-items .details-content {
  margin-top: 35px;
} */

@media (max-width: 575px) {
  .service-details-wrapper .service-details-items .details-content {
    margin-top: 25px;
  }
}

.service-details-wrapper .service-details-items .details-content h3 {
  font-size: 30px;
}

@media (max-width: 767px) {
  .service-details-wrapper .service-details-items .details-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .service-details-wrapper .service-details-items .details-content h3 {
    font-size: 24px;
  }
}


.service-details-wrapper .service-details-items .details-content .image-area {
  margin-top: 30px;
  margin-bottom: 40px;
}

.service-details-wrapper .service-details-items .details-content .image-area .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}



/* Service Widget */

.main-sidebar .single-sidebar-widget {
  padding: 20px 30px;
  background-color: var(--bg);
  margin-bottom: 30px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li {
  background-color: #FFFFFF;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li a {
  color: var(--header);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li i {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li:hover {
  background-color: var(--theme);
}

.main-sidebar .single-sidebar-widget .widget-categories ul li:hover a {
  color: #FFFFFF;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li:hover i {
  color: #FFFFFF;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li.active {
  background-color: var(--theme);
}

.main-sidebar .single-sidebar-widget .widget-categories ul li.active a {
  color: #FFFFFF;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li.active i {
  color: #FFFFFF;
}

.main-sidebar .single-sidebar-widget .opening-category ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: #FFFFFF;
  font-weight: 500;
  color: var(--header);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.main-sidebar .single-sidebar-widget .opening-category ul li:not(:last-child) {
  margin-bottom: 12px;
}

.main-sidebar .single-sidebar-widget .opening-category ul li i {
  color: var(--theme);
}

.main-sidebar .single-sidebar-image {
  height: 400px;
  max-width: 500px;
  position: relative;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

@media (max-width: 991px) {
  .main-sidebar .single-sidebar-image {
    max-width: 800px;
  }
}

.main-sidebar .single-sidebar-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #3C72FC 0%, rgba(0, 6, 12, 0) 100%);
  opacity: 0.9;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.main-sidebar .single-sidebar-image .contact-text {
  position: relative;
  text-align: center;
  padding: 130px 30px;
  margin: 0 auto;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.main-sidebar .single-sidebar-image .contact-text .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #FFFFFF;
  text-align: center;
  color: var(--theme);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}

.main-sidebar .single-sidebar-image .contact-text .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  content: "";
  transform: translate(-50%, -50%);
}

.main-sidebar .single-sidebar-image .contact-text h4 {
  color: #FFFFFF;
  margin-top: 30px;
}

.main-sidebar .single-sidebar-image .contact-text h5 {
  margin-top: 15px;
}

.main-sidebar .single-sidebar-image .contact-text h5 a {
  color: #FFFFFF;
}


/* Brand Section */

.brand-wrapper h5 {
  /* display: inline-block; */
  font-size: 22px;
  position: relative;
  margin-bottom: 30px;
  color: var(--header);
  font-weight: 600;
}

.brand-wrapper h5::before {
  position: absolute;
  top: 15px;
  left: 35px;
  content: "";
  height: 1px;
  width: 480px;
  background-color: var(--border-color);
}

@media (max-width: 1399px) {
  .brand-wrapper h5::before {
    display: none;
  }
}

.brand-wrapper h5::after {
  position: absolute;
  top: 15px;
  right: 35px;
  content: "";
  height: 1px;
  width: 480px;
  background-color: var(--border-color);
}

@media (max-width: 1399px) {
  .brand-wrapper h5::after {
    display: none;
  }
}

.brand-wrapper .brand-image {
  text-align: center;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
  opacity: 0.4;
}

.brand-wrapper .brand-image:hover {
  filter: initial;
  opacity: 1;
}

.brand-wrapper .swiper-slide.swiper-slide-active .brand-image {
  filter: initial;
  opacity: 1;
}

.brand-wrapper-2 {
  margin-bottom: -10px;
}

@media (max-width: 1199px) {
  .brand-wrapper-2 {
    margin-top: -7px;
  }
}

.brand-wrapper-2 .brand-img {
  text-align: center;
}





/* Achievement Section */

.achievement-section {
  margin-top: -200px;
  position: relative;
  z-index: 9;
}

.achievement-section-3 {
  background-color: gray;
  position: relative;
}

.achievement-section-3 .shape-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -50px;
}

.achievement-title {
  color: white;
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 25px;
}

@media (max-width: 1199px) {
  .achievement-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .achievement-title {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .achievement-title {
    font-size: 20px;
    text-align: center;
  }
}

@media (max-width: 1399px) {
  .achievement-section-3 .shape-image {
    display: none;
  }
}

.achievement-section-3 .shape-image img {
  width: 100%;
  height: 100%;
}

.achievement-wrapper {
  padding: 100px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-right: -25%;
  position: relative;
  z-index: 9;
}

@media (max-width: 1600px) {
  .achievement-wrapper {
    margin-right: 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .achievement-wrapper {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .achievement-wrapper {
    padding: 60px 50px;
    text-align: center;
    justify-self: center;
    gap: 30px;
  }
}

.achievement-wrapper .counter-area {
  display: flex;
  align-items: center;
  gap: 100px;
}

@media (max-width: 1399px) {
  .achievement-wrapper .counter-area {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .achievement-wrapper .counter-area {
    text-align: center;
    justify-content: center;
    gap: 20px;
  }
}

.achievement-wrapper .counter-area .counter-items:not(:last-child) {
  border-right: 1px solid var(--border3);
  padding-right: 70px;
}

@media (max-width: 1199px) {
  .achievement-wrapper .counter-area .counter-items:not(:last-child) {
    padding-right: 0;
    border: none;
  }
}

.achievement-wrapper .counter-area .counter-items .content {
  margin-top: 10px;
}



.achievement-wrapper .counter-area .counter-items .content p {
  color: white;
  margin-top: 2px;
  margin-bottom: 0;
}

.achievement-wrapper .counter-area .counter-items .content .count {
  font-size: 25px;
}

.achievement-wrapper.style-2 {
  background-color: initial;
  margin-right: 0;
  padding: 30px 30px;
}

.achievement-wrapper.style-2 .counter-area {
  gap: 56px;
}

@media (max-width: 575px) {
  .achievement-wrapper.style-2 .counter-area {
    gap: 30px;
  }
}

.achievement-wrapper.style-2 .counter-area .counter-items:not(:last-child) {
  border-right: 2px solid rgba(243, 247, 251, 0.16);
}

@media (max-width: 1199px) {
  .achievement-wrapper.style-2 .counter-area .counter-items:not(:last-child) {
    border: none;
  }
}

@media (max-width: 575px) {
  .achievement-section-headline {
    font-size: 19px !important;
  }
}

@media (max-width: 767px) {
  .achievement-section-headline {
    font-size: 21px !important;
  }
}

@media (max-width: 1199px) {
  .achievement-section-headline {
    font-size: 24px !important;
  }
}

.achievement-section-headline {
  font-size: 21px !important;
}

.achievement-section-2 {
  position: relative;
  overflow: hidden;
}



.achievement-section-2:after {
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.achievement-section-2 .container,
.achievement-section-2 .achievement-wrapper,
.achievement-section-2 .achievement-title,
.achievement-section-2 .counter-area,
.achievement-section-2 .counter-items {
  position: relative;
  z-index: 2;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 75%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 95%;
  }
}


/* Footer */
footer {
  background: linear-gradient(135deg, #8B000F, #B30016);
  color: #f1f1f1;
  padding: 40px 0 30px;
  font-size: 15px;
}

footer span {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

footer span::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #FFD700;
  margin-top: 8px;
}

.footer-link {
  color: #ddd;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-link i {
  font-size: 14px;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-link:hover i {
  color: #fff;
  transform: translateX(3px);
}

.social-icon a {
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  margin-right: 10px;
  text-align: center;
  font-size: 18px;
  display: inline-block;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.social-icon a:hover {
  background: #FFD700;
  border-color: #FFD700;
  color: #B30016;
  transform: rotate(360deg);
}

footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}

footer p {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}

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

.process-card {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease-in-out;
}

.process-card:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

.process-img {
  object-fit: cover;
  transition: transform 0.4s ease-in-out, border-color 0.4s ease-in-out;
  border-color: var(--secondary) !important;
}

.step-number {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 4px var(--secondary);
}

.process-card:hover .process-img {
  transform: scale(1.04);
  border-color: var(--primary) !important;
}

.process-card:hover .step-number {
  top: 20%;
  left: 0;
  background: var(--secondary);
  box-shadow: 0px 2px 4px var(--primary);
  transition: all 0.3s ease-in-out;
}


/* FAQ */

.st-faq-section {
  background: #FFFFFF;
}

.st__section__title .section-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.st__section__title .para {
  font-size: 1rem;
  color: var(--dark-color);
  opacity: 0.9;
}

.accordion-button::after {
  background-image: none !important;
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  background: var(--bg2);
  border: 1px solid white;
  color: #ffffff;
  margin-left: auto;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: '-';
  background: #FFFFFF;
  color: var(--black-color);
  border: 2px solid var(--bg2);
}

.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}



.custom-accordion .accordion-body {
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: var(--dark-color);
  background: #ffffff;
}

/* .faq-img {
   border-radius: 12px;
 } */

.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background: var(--bg2);
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 1.2rem;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
}

.custom-accordion .accordion-button:hover {
  background: var(--black);
  color: #ffffff;
}

.custom-accordion .accordion-body {
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: var(--dark-color);
  background: #ffffff;
}

.faq-img {
  border-radius: 12px;
}