@charset "UTF-8";
body {
  background-color: #00040C;
  font-family: "Avenir Next Cyr", sans-serif;
  cursor: url("../img/cursor.png"), auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Avenir Next Cyr", sans-serif;
  color: #fff;
}

p,
span,
label,
li {
  color: #ccc;
}

* {
  cursor: url("../img/cursor.png"), auto;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
.process-stages {
  position: relative;
  width: 100%;
  height: 100%;
}
.process-stages .progress-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 1rem;
  bottom: 1rem;
  display: block;
  width: 1px;
  height: 100%;
  margin: 0 auto;
  background: linear-gradient(transparent, #E10712, transparent);
}
.process-stages .block {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  margin: 1rem 0;
  background: rgba(245, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.process-stages .block:hover {
  transform: translateY(-5px);
  background: rgba(225, 7, 18, 0.5);
  border-color: #E10712;
}
.process-stages .block .stage-number {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35px;
  border: 1px solid #E10712;
  border-radius: 100%;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  box-sizing: border-box;
  margin: auto;
  z-index: 1;
  background-color: #00040C;
}
.process-stages .alt-block .stage-number {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -35px;
  left: unset !important;
}
.process-stages .block-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.process-stages .block-content .bi {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
}
.process-stages .block-content .title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
.process-stages .block-content p {
  text-align: center;
}
@media (max-width: 991px) {
  .process-stages .progress-line {
    margin: 0;
    left: 3.5rem;
  }
  .process-stages .block {
    padding: 3rem 2rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .process-stages .block .stage-number {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    margin: 0;
  }
  .process-stages .block .block-content {
    align-items: start;
    justify-content: start;
    width: calc(100% - 48px);
  }
  .process-stages .block .block-content p {
    text-align: initial;
  }
}

.glow-on-hover {
  display: flex;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  outline: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 2px;
  background: transparent;
  border: none;
}
.glow-on-hover::before {
  content: "";
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 2px;
  border: thin solid #E10712;
  transform: SkewX(-10deg);
}
.glow-on-hover:active {
  color: #000;
}
.glow-on-hover:active::after {
  background: transparent;
}
.glow-on-hover:hover::before {
  opacity: 1;
  border: none;
}
.glow-on-hover::after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00040C;
  left: 0;
  top: 0;
  border-radius: 2px;
  border: thin solid #E10712;
  transform: SkewX(-10deg);
}

.secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: SkewX(-10deg);
}
.secondary-btn:hover {
  background: #fff;
}
.secondary-btn:hover span {
  color: #00040C;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0 1rem;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  position: relative;
}
header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo img {
  display: block;
  height: 72px;
  filter: drop-shadow(0rem 0rem 1rem #E10712);
}
@media (max-width: 1199px) {
  header .logo img {
    height: 50px;
  }
}
header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}
@media (max-width: 1199px) {
  header .mobile-menu-toggle {
    display: flex;
  }
}
header .mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
header .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
header .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
header .desktop-nav {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1199px) {
  header .desktop-nav {
    display: none;
  }
}
header .desktop-nav .link {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  font-size: 16px;
}
header .desktop-nav .link:hover {
  text-shadow: 0px 8px 8px #E10712;
}
header .desktop-nav .active {
  font-weight: 800;
  line-height: 1;
  text-shadow: 2px 2px 2px #991916;
}
header .desktop-nav .active::after {
  content: attr(data-page);
  position: absolute;
  top: 4px;
  left: 4px;
  right: -4px;
  color: #991916;
  /* Shadow color (dark red) */
  z-index: -1;
}
header .desktop-nav .active:hover {
  text-shadow: 2px 2px 2px #991916;
}
header .desktop-nav .has-submenu {
  position: relative;
}
header .desktop-nav .has-submenu:hover .submenu {
  display: block;
}
header .desktop-nav .has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 1rem;
  min-width: 220px;
}
header .desktop-nav .has-submenu .submenu .link {
  background: #00040C;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding: 1rem 1rem;
  border-top: 1px solid #222;
}
header .desktop-nav .has-submenu .submenu .link:hover {
  background: #E10712;
}
@media (max-width: 1199px) {
  header .desktop-cta {
    display: none;
  }
}
header .mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 4, 12, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  align-items: start;
  overflow: auto;
  justify-content: center;
}
header .mobile-nav.active {
  transform: translateX(0);
}
header .mobile-nav .mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 6rem 2rem 2rem;
}
header .mobile-nav .mobile-link {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
header .mobile-nav .mobile-link:hover {
  color: #E10712;
  transform: translateX(10px);
}
header .mobile-nav .mobile-link.active {
  color: #E10712;
  text-shadow: 0 0 10px rgba(225, 7, 18, 0.5);
}
header .mobile-nav .mobile-cta {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.2rem;
}
header .mobile-nav .has-submenu {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
header .mobile-nav .has-submenu .submenu {
  border-top: thin solid #888;
  padding-top: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.backdrop {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  opacity: 1;
  /*  where the real magic happens  */
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  -webkit-mask-image: linear-gradient(rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0) 100%);
}
.backdrop .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 1rem;
  min-width: 220px;
}

.hero-section {
  background-image: url("../img/hero-bg.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-section {
    padding: 200px 0 100px;
  }
}
.hero-section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-image: linear-gradient(transparent, #00040C);
}
.hero-section .galaxy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1600px;
  height: 1600px;
  margin-left: -800px;
  margin-top: -800px;
  background: url("../img/stars.webp") no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  animation: spin 180s linear infinite;
  opacity: 0.16;
  z-index: 0;
  filter: blur(0px);
}
.hero-section img {
  display: block;
  width: 100%;
}
.hero-section .content {
  position: relative;
  z-index: 1;
}
.hero-section .content .hero-title {
  color: #fff;
  font-family: "Avenir Next Cyr", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(16px, 10vw, 32px);
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-section .content .hero-title .highlight {
  color: #E10712;
  display: block;
  font-size: clamp(32px, 10vw, 112px);
  line-height: 1;
}
.hero-section .link {
  color: white;
  margin-left: 1rem;
}
.hero-section .link:hover {
  color: #E10712;
}

.cursor-follow {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 9999;
  box-shadow: 0 0 0.5rem #E10712;
}

.section {
  padding: 150px 0;
  overflow: hidden;
}
.section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 1rem;
}
@media (max-width: 991px) {
  .section .section-header {
    flex-direction: column;
    align-items: initial;
    gap: 1.5rem;
  }
}
.section .section-header .link-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.section .section-header .link-list .link {
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: thin solid transparent;
}
.section .section-header .link-list .link:hover {
  background-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 1rem rgba(225, 7, 18, 0.5);
  border-color: #E10712;
}
.section .section-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
  font-size: clamp(12px, 10vw, 14px);
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.section .section-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: thin solid #fff;
  transform: skewX(0deg);
  transition: all 0.3s ease-in-out;
}
.section .section-cta:hover::after {
  transform: skewX(-10deg);
  box-shadow: 0 0 1rem #E10712;
  border-color: #222;
}
.section .section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0;
}
.section .section-title small {
  font-size: clamp(12px, 10vw, 14px);
  text-transform: uppercase;
  padding: 0.24rem 0.5rem;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.section .section-title small::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(225, 7, 18, 0.16);
  border: thin solid #E10712;
  transform: skewX(-10deg);
}
.section .section-title span {
  display: inline-block;
  will-change: transform, opacity;
  overflow: hidden;
  font-size: clamp(24px, 10vw, 56px);
  color: white;
  font-weight: bold;
  background: linear-gradient(90deg, #fbd6bc, #ffbcbc);
  background-position: left;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.6s ease;
}
.section .section-title span:hover {
  background-position: right;
}
.section .subtitle {
  font-size: clamp(16px, 10vw, 24px);
}
.section .title-center {
  justify-content: center;
  align-items: center;
}

.light-section {
  background-color: #ccc;
  color: #00040C;
  background-image: url("../img/bg-img-light-section.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}
.light-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(225, 7, 18, 0.05), rgba(204, 204, 204, 0.85));
  z-index: 0;
}
.light-section > * {
  position: relative;
  z-index: 1;
}
.light-section .section-title small {
  color: #00040C;
}
.light-section .section-title small::after {
  background-color: rgba(0, 4, 12, 0.16);
  border: thin solid rgba(0, 4, 12, 0.24);
}
.light-section .section-title span {
  display: inline-block;
  will-change: transform, opacity;
  overflow: hidden;
  font-size: clamp(24px, 10vw, 56px);
  color: #00040C;
  font-weight: bold;
  background: linear-gradient(90deg, #000000, #6d1b1b);
  background-position: left;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.6s ease;
}
.light-section .section-title span:hover {
  background-position: right;
}

.service-grid {
  border-left: thin solid rgba(0, 4, 12, 0.16);
  border-bottom: thin solid rgba(0, 4, 12, 0.16);
}
.service-grid .col-sm-12 {
  padding: 0;
  position: relative;
  min-height: 350px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-grid .col-sm-12:hover {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 0 1rem rgba(225, 7, 18, 0.3);
}
.service-grid .content {
  border-right: thin solid rgba(0, 4, 12, 0.16);
  border-top: thin solid rgba(0, 4, 12, 0.16);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: end;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.service-grid .content::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.5rem;
  height: 20px;
  width: 20px;
  border: thin solid #00040C;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.service-grid .content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(transparent, #ccc);
}
.service-grid .content video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.service-grid .content .text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(30px);
}
.service-grid .content .text .title {
  color: #00040C;
  margin: 0;
  justify-content: space-between;
  display: flex;
  font-size: clamp(16px, 10vw, 24px);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-grid .content .text .title i {
  font-size: 1.5rem;
  transform: translateX(-24px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.service-grid .content .text .title span {
  color: #00040C;
  background: linear-gradient(90deg, #00040C, #00040C);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-grid .content .text p {
  color: #00040C;
  margin: 0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-grid .content:hover::before {
  background-color: #991916;
  border: thin solid #E10712;
}
.service-grid .content:hover .text {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(0px);
}
.service-grid .content:hover .text .title {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-grid .content:hover .text .title i {
  transform: translateX(0px);
  opacity: 1;
}
.service-grid .content:hover .text .title span {
  background: linear-gradient(90deg, #00040C, #E10712);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-grid .content:hover .text p {
  display: block;
  opacity: 1;
  animation: fadeInUp 0.3s forwards ease-in-out;
}
.service-grid .content:hover video {
  opacity: 1;
}

.featured-banner-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.featured-banner {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(225, 7, 18, 0.2);
  border-radius: 20px;
  padding: 4rem 2rem;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.featured-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(225, 7, 18, 0.1) 50%, transparent 70%);
  border-radius: 20px;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.banner-content {
  position: relative;
  z-index: 2;
}

.banner-icon {
  margin-bottom: 2rem;
}
.banner-icon i {
  font-size: 4rem;
  color: #E10712;
  background: linear-gradient(45deg, #E10712, #ff6b6b);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(225, 7, 18, 0.3));
}

.banner-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fbd6bc, #ffbcbc);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(251, 214, 188, 0.3);
}

.banner-description {
  font-size: clamp(16px, 3vw, 20px);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.banner-subtitle {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #ccc;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.banner-cta {
  margin-top: 2rem;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #E10712, #ff6b6b);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.banner-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 7, 18, 0.2), transparent);
  transition: left 0.5s ease;
}
.banner-btn:hover::before {
  left: 100%;
}
.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(225, 7, 18, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}
.banner-btn i {
  transition: transform 0.3s ease;
}
.banner-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .featured-banner {
    padding: 3rem 1.5rem;
    margin: 0 1rem;
  }
  .banner-icon i {
    font-size: 3rem;
  }
  .banner-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .banner-description {
    font-size: clamp(14px, 4vw, 18px);
  }
  .banner-subtitle {
    font-size: clamp(13px, 3.5vw, 15px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-cover {
  padding: 200px 0 50px;
  border-bottom: thin solid #222;
}

.policy-page {
  padding: 0 0 200px;
}
.policy-page h2 {
  margin: 2rem 0 1rem;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.3;
}
.policy-page a {
  text-decoration: none;
  color: #fff;
}
.policy-page a:hover {
  color: #E10712;
}

.link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-wrapper {
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
}
.footer-wrapper::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background-image: linear-gradient(#00040C, transparent);
  z-index: 1;
}
.footer-wrapper video {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

footer {
  border-top: thin solid #222;
  border-bottom: thin solid #222;
  position: relative;
  z-index: 1;
}
footer .container {
  border-left: thin solid #222;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
footer .col-sm-12 {
  border-right: thin solid #222;
  padding: 0;
}
footer .footer-title {
  border-bottom: thin solid #222;
  padding: 1.5rem;
}
footer .links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
}
footer .links .link {
  color: #ccc;
  font-weight: 200;
}
footer .links .link span {
  color: #E10712;
}
footer .links .link:hover {
  color: #E10712;
}

.foot-note {
  padding: 2rem 0;
  color: #ccc;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.foot-note img {
  display: block;
  height: 40px;
}
@media (max-width: 767px) {
  .foot-note img {
    margin: auto;
  }
}
.foot-note span {
  font-weight: 200;
}
@media (max-width: 767px) {
  .foot-note span {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }
}
.foot-note a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
.foot-note a:hover {
  color: #E10712;
}

.img-glow {
  filter: drop-shadow(0 0 4rem rgba(225, 7, 18, 0.5));
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(153, 25, 22, 0.8);
  padding: 10px 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.marquee-container .marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.marquee-container .marquee-text span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  font-size: 1.2rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  font-weight: 700;
}
.marquee-container .marquee-text span::after {
  content: "\f586";
  font-family: "bootstrap-icons";
  font-size: 1.2rem;
}

.service-section {
  position: relative;
  background-image: url("../img/service-section-bg.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.cta-banner {
  color: #fff;
  position: relative;
  margin-top: 2rem;
  z-index: 1;
}
.cta-banner::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(25deg, #00040C, #991916);
  border-radius: 0.5rem;
  transform: skewX(-10deg);
}
@media (max-width: 767px) {
  .cta-banner::before {
    height: 100%;
    transform: skewX(0deg);
    background-image: linear-gradient(180deg, #00040C, #991916);
    border-radius: 1.5rem;
  }
}
.cta-banner img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0px -1rem 2rem rgba(0, 0, 0, 0.5));
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 991px) {
  .cta-banner img {
    height: 350px;
  }
}
.cta-banner .content {
  padding: 50px 0 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 991px) {
  .cta-banner .content {
    margin: 0px auto 1rem;
    padding: 50px 0 0 0rem;
  }
}
.cta-banner #circle {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cta-banner #circle {
    margin: 16px auto 16px;
  }
}
.cta-banner .title {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
.cta-banner .title small {
  font-size: clamp(16px, 10vw, 18px);
  color: #ccc;
}
.cta-banner .title span {
  font-size: clamp(1.5rem, 10vw, 3rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
}
.cta-banner .link {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  display: flex;
  flex-direction: row;
}

#circle {
  position: relative;
  border-radius: 100%;
  animation: rotate-animation 8s infinite linear;
  border: thin solid #fff;
  display: block;
}
#circle::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  bottom: 20%;
  right: 20%;
  border: thin solid #fff;
  border-radius: 100%;
}

#circle span {
  position: absolute;
  transform-origin: top left;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes rotate-animation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
.founder-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .founder-section {
    padding: 100px 0 100px;
  }
}
.founder-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 4, 12, 0.8) 0%, rgba(153, 25, 22, 0.6) 100%);
  z-index: 0;
}
.founder-section::after {
  animation: grain 8s steps(10) infinite;
  background-image: url("../img/noise.svg");
  content: "";
  height: 300%;
  width: 300%;
  left: -100%;
  top: -110%;
  opacity: 0.32;
  z-index: 0;
  position: absolute;
}
.founder-section .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .founder-section .row {
    flex-direction: column-reverse;
  }
}
.founder-section .content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.founder-section .section-title span {
  color: white;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  background: unset;
}
.founder-section img {
  display: block;
}
@media (max-width: 991px) {
  .founder-section img {
    display: block;
    height: 400px;
    margin: auto;
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  opacity: 0.1;
  transition: all 0.3s ease;
}
.floating-element:hover {
  opacity: 0.3;
  transform: scale(1.2);
}
.floating-element .element-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.floating-element .element-content i {
  font-size: 2rem;
  color: #E10712;
  filter: drop-shadow(0 0 10px rgba(225, 7, 18, 0.5));
}
@media (max-width: 767px) {
  .floating-element .element-content i {
    font-size: 1.5rem;
  }
}
.floating-element.element-1 {
  top: 10%;
  left: 10%;
  width: 80px;
  height: 80px;
  animation: float-1 8s ease-in-out infinite;
}
@media (max-width: 767px) {
  .floating-element.element-1 {
    width: 60px;
    height: 60px;
  }
}
.floating-element.element-2 {
  top: 20%;
  right: 15%;
  width: 100px;
  height: 100px;
  animation: float-2 10s ease-in-out infinite;
}
@media (max-width: 767px) {
  .floating-element.element-2 {
    width: 70px;
    height: 70px;
  }
}
.floating-element.element-3 {
  top: 50%;
  left: 5%;
  width: 70px;
  height: 70px;
  animation: float-3 12s ease-in-out infinite;
}
@media (max-width: 767px) {
  .floating-element.element-3 {
    width: 50px;
    height: 50px;
  }
}
.floating-element.element-4 {
  top: 60%;
  right: 10%;
  width: 90px;
  height: 90px;
  animation: float-4 9s ease-in-out infinite;
}
@media (max-width: 767px) {
  .floating-element.element-4 {
    width: 65px;
    height: 65px;
  }
}
.floating-element.element-5 {
  top: 80%;
  left: 20%;
  width: 75px;
  height: 75px;
  animation: float-5 11s ease-in-out infinite;
}
@media (max-width: 767px) {
  .floating-element.element-5 {
    width: 55px;
    height: 55px;
  }
}
.floating-element.element-6 {
  top: 15%;
  left: 50%;
  width: 85px;
  height: 85px;
  animation: float-6 13s ease-in-out infinite;
}
@media (max-width: 767px) {
  .floating-element.element-6 {
    width: 60px;
    height: 60px;
  }
}
.floating-element.element-7 {
  top: 70%;
  left: 60%;
  width: 95px;
  height: 95px;
  animation: float-7 7s ease-in-out infinite;
}
@media (max-width: 767px) {
  .floating-element.element-7 {
    width: 70px;
    height: 70px;
  }
}
.floating-element.element-8 {
  top: 30%;
  left: 70%;
  width: 80px;
  height: 80px;
  animation: float-8 14s ease-in-out infinite;
}
@media (max-width: 767px) {
  .floating-element.element-8 {
    width: 60px;
    height: 60px;
  }
}

@keyframes float-1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes float-2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(-5deg);
  }
}
@keyframes float-3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(10deg);
  }
}
@keyframes float-4 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-10deg);
  }
}
@keyframes float-5 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-35px) rotate(15deg);
  }
}
@keyframes float-6 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(-15deg);
  }
}
@keyframes float-7 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(8deg);
  }
}
@keyframes float-8 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(-8deg);
  }
}
.page-cover {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, rgba(0, 4, 12, 0.5) 0%, rgba(153, 25, 22, 0.7) 100%);
  position: relative;
  overflow: hidden;
}
.page-cover .page-cover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 0.3;
}
.page-cover .page-cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 4, 12, 0.8) 0%, rgba(153, 25, 22, 0.6) 100%);
  z-index: -1;
}
.page-cover .container {
  position: relative;
  z-index: 2;
}
.page-cover .page-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.page-cover .page-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #ccc;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-section {
  padding: 100px 0;
  background: #00040C;
  position: relative;
}
.services-section .container {
  position: relative;
  z-index: 2;
}

.service-card {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.service-card:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .service-card {
    margin-bottom: 60px;
  }
}

.service-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .service-content {
    flex-direction: column;
  }
}
.service-content video {
  width: 300px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
}
@media (max-width: 991px) {
  .service-content video {
    width: 100%;
    height: 300px;
  }
}
.service-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(225, 7, 18, 0.3);
}
.service-content:hover::before {
  opacity: 1;
}
.service-content:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}
.service-content:hover .service-icon i {
  color: #E10712;
  filter: drop-shadow(0 0 20px rgba(225, 7, 18, 0.8));
}
@media (max-width: 767px) {
  .service-content {
    padding: 2rem;
  }
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(225, 7, 18, 0.1);
  border: 2px solid rgba(225, 7, 18, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}
.service-icon i {
  font-size: 2rem;
  color: #E10712;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .service-icon {
    width: 60px;
    height: 60px;
  }
  .service-icon i {
    font-size: 1.5rem;
  }
}

.service-text {
  position: relative;
  z-index: 2;
}

.service-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-title small {
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
}

.service-description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .service-description {
    font-size: 1rem;
  }
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.service-features .feature {
  background: rgba(225, 7, 18, 0.1);
  border: 1px solid rgba(225, 7, 18, 0.3);
  color: #E10712;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.service-features .feature:hover {
  background: #E10712;
  color: #fff;
  transform: translateY(-2px);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #E10712;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.service-link:hover {
  color: #fff;
  transform: translateX(5px);
}
.service-link:hover i {
  transform: translateX(3px);
}
.service-link i {
  transition: transform 0.3s ease;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 4, 12, 0.95) 0%, rgba(153, 25, 22, 0.8) 100%);
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-section-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.2;
  z-index: -1;
}
.cta-section .cta-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}
.cta-section .cta-description {
  font-size: 1.2rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-button {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cta-section .cta-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

.service-detail-section {
  padding: 100px 0;
  background: #00040C;
}
.service-detail-section .service-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.service-detail-section .service-intro h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: #E10712;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.service-detail-section .service-intro p {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.breadcrumb-section {
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 767px) {
  .breadcrumb-section {
    padding: 1rem 0;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #ccc;
  font-weight: 400;
}
.breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 0.75rem;
  color: #E10712;
  font-weight: 600;
  opacity: 0.7;
}
.breadcrumb .breadcrumb-item a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #E10712;
  text-shadow: 0 0 10px rgba(225, 7, 18, 0.5);
  font-weight: 500;
}
.breadcrumb .breadcrumb-item.active {
  color: #E10712;
  font-weight: 600;
}
.breadcrumb .breadcrumb-item.active span {
  color: #E10712;
  font-weight: 600;
}
@media (max-width: 767px) {
  .breadcrumb .breadcrumb-item {
    font-size: 0.85rem;
  }
  .breadcrumb .breadcrumb-item:not(:last-child)::after {
    margin-left: 0.5rem;
  }
}

@keyframes grain {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  20% {
    transform: translate(-15%, 5%);
  }
  30% {
    transform: translate(5%, -25%);
  }
  40% {
    transform: translate(-5%, 25%);
  }
  50% {
    transform: translate(-15%, 10%);
  }
  60% {
    transform: translate(15%, 0%);
  }
  70% {
    transform: translate(0%, 15%);
  }
  80% {
    transform: translate(5%, 35%);
  }
  90% {
    transform: translate(-10%, 10%);
  }
}
.client-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.client-marquee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, #00040C, transparent);
  z-index: 2;
  pointer-events: none;
}
.client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00040C);
  z-index: 2;
  pointer-events: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee-scroll 30s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .marquee-track {
    gap: 2rem;
    animation-duration: 20s;
  }
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.marquee-item img {
  height: 100px;
  width: auto;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%) brightness(1);
  transition: all 0.3s ease;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .marquee-item img {
    height: 40px;
    max-width: 100px;
  }
}
.marquee-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.testimonial-carousel {
  margin-top: 3rem;
}
.testimonial-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.testimonial-carousel .owl-item {
  display: flex;
  height: auto;
}
.testimonial-carousel .owl-item span {
  display: none;
}

.testimonial-item {
  height: 100%;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .testimonial-item {
    padding: 0 0.5rem;
  }
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #E10712;
  opacity: 0.3;
  font-family: serif;
}
.testimonial-content:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .testimonial-content {
    padding: 1.5rem;
  }
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.stars i {
  color: #FFD700;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .stars i {
    font-size: 1rem;
  }
}

.testimonial-text {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}
@media (max-width: 767px) {
  .testimonial-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.testimonial-author .author-logo {
  width: 50px !important;
  height: 50px !important;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .testimonial-author .author-logo {
    width: 40px;
    height: 40px;
  }
}
.testimonial-author .author-info {
  flex: 1;
}
.testimonial-author .author-info h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}
@media (max-width: 767px) {
  .testimonial-author .author-info h4 {
    font-size: 0.9rem;
  }
}
.testimonial-author .author-info span {
  color: #E10712;
  font-size: 0.85rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .testimonial-author .author-info span {
    font-size: 0.8rem;
  }
}

.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 10;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(225, 7, 18, 0.2) !important;
  border: 2px solid #E10712 !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background: #E10712 !important;
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
.owl-nav .owl-prev {
  left: -25px;
}
@media (max-width: 767px) {
  .owl-nav .owl-prev {
    left: -20px;
  }
}
.owl-nav .owl-next {
  right: -25px;
}
@media (max-width: 767px) {
  .owl-nav .owl-next {
    right: -20px;
  }
}

.owl-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.owl-dots .owl-dot.active {
  background: #E10712;
  transform: scale(1.2);
}
.owl-dots .owl-dot:hover {
  background: rgba(225, 7, 18, 0.7);
}

/* FAQ Styles */
.faq-section {
  padding: 100px 0 0;
  border-top: thin solid #222;
  background: #00040C;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
@media (max-width: 767px) {
  .faq-container {
    padding: 1rem 0;
  }
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}
@media (max-width: 767px) {
  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}
.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .faq-question h3 {
    font-size: 1rem;
  }
}
.faq-question i {
  color: #E10712;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .faq-question {
    padding: 1rem;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-answer p {
  margin: 0;
  color: #ccc;
  line-height: 1.6;
}

.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 4, 12, 0.95) 0%, rgba(153, 25, 22, 0.8) 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-section-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.1;
  z-index: -1;
}
.newsletter-section .container {
  position: relative;
  z-index: 2;
}

.newsletter-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.newsletter-description {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .newsletter-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-form {
  display: flex;
}
.subscribe-form .input-group {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  flex-wrap: nowrap;
}
.subscribe-form .input-group input {
  width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .subscribe-form .input-group {
    flex-direction: column;
    border-radius: 25px;
    padding: 1rem;
    gap: 1rem;
  }
  .subscribe-form .input-group input {
    width: 100%;
  }
  .subscribe-form .input-group button {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
    border-top-right-radius: 100px !important;
    border-bottom-right-radius: 100px !important;
  }
}
.subscribe-form .form-control {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  flex: 1;
}
.subscribe-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .form-control:focus {
  outline: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 767px) {
  .subscribe-form .form-control {
    text-align: center;
  }
}
.subscribe-form .subscribe-btn {
  background: linear-gradient(135deg, #E10712 0%, #991916 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 200px;
}
.subscribe-form .subscribe-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.subscribe-form .subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(225, 7, 18, 0.3);
}
.subscribe-form .subscribe-btn:hover::before {
  left: 100%;
}
.subscribe-form .subscribe-btn:hover i {
  transform: translateX(5px);
}
.subscribe-form .subscribe-btn:active {
  transform: translateY(0);
}
.subscribe-form .subscribe-btn span {
  font-size: 0.9rem;
}
.subscribe-form .subscribe-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .subscribe-form .subscribe-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 4, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  color: #fff;
  font-size: 0.9rem;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  max-width: 350px;
}
.notification.show {
  transform: translateX(0);
}
.notification .notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.notification .notification-content i {
  font-size: 1.2rem;
}
.notification.notification-success {
  border-color: #28a745;
}
.notification.notification-success i {
  color: #28a745;
}
.notification.notification-error {
  border-color: #dc3545;
}
.notification.notification-error i {
  color: #dc3545;
}
.notification.notification-info {
  border-color: #17a2b8;
}
.notification.notification-info i {
  color: #17a2b8;
}
@media (max-width: 767px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100%);
  }
  .notification.show {
    transform: translateY(0);
  }
}

.service-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.service-hero .service-hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .service-hero .service-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}
.service-hero .service-hero-description {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .service-hero .service-hero-description {
    font-size: 1rem;
  }
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
@media (max-width: 767px) {
  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.service-features-grid .feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-features-grid .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-features-grid .feature-item:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 7, 18, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.service-features-grid .feature-item:hover::before {
  opacity: 1;
}
.service-features-grid .feature-item:hover i {
  color: #E10712;
  transform: scale(1.1);
}
.service-features-grid .feature-item i {
  font-size: 3rem;
  color: #E10712;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  display: block;
}
@media (max-width: 767px) {
  .service-features-grid .feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
.service-features-grid .feature-item h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .service-features-grid .feature-item h4 {
    font-size: 1.1rem;
  }
}

.service-section .service-section-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #E10712;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 767px) {
  .service-section .service-section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 1.5rem;
  }
}
.service-section .service-section-description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .service-section .service-section-description {
    font-size: 1rem;
  }
}

.workflow-section .workflow-steps {
  position: relative;
}
.workflow-section .workflow-steps::before {
  content: "";
  position: absolute;
  top: 10%;
  width: 80%;
  height: 1px;
  border-bottom: thin dotted #991916;
}
@media (max-width: 991px) {
  .workflow-section .workflow-steps::before {
    height: 100%;
    border-left: thin dashed #991916;
    top: 0;
    left: 5%;
    border-bottom: none;
    width: 1px;
  }
}
.workflow-section .section-title {
  justify-content: center;
  align-items: center;
}
.workflow-section .workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
}
.workflow-section .workflow-step .step-number {
  font-weight: 700;
  color: #fff;
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: thin solid #E10712;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  top: 0;
  right: 0;
}
.workflow-section .workflow-step h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-align: center;
}
.workflow-section .workflow-step p {
  color: #ccc;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}
.workflow-section .workflow-step:hover .step-number {
  background: #E10712;
  color: #fff;
}
@media (max-width: 991px) {
  .workflow-section .workflow-step {
    display: grid;
    grid-template-columns: 1fr 8fr;
    grid-template-rows: repeat(3, 0fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin: 1rem 0;
    row-gap: 1rem;
  }
  .workflow-section .workflow-step .step-number {
    grid-area: 1/1/4/2;
  }
  .workflow-section .workflow-step h4 {
    grid-area: 1/2/2/3;
    text-align: start;
  }
  .workflow-section .workflow-step p {
    grid-area: 2/2/3/3;
    text-align: start;
  }
  .workflow-section .workflow-step .step-details {
    grid-area: 3/2/4/3;
    visibility: visible;
    opacity: 1;
    position: relative;
    top: unset;
    width: auto;
    left: unset;
    transform: none;
    margin: 0;
  }
  .workflow-section .workflow-step:hover .step-details {
    transform: none;
  }
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}
.achievements-grid .achievement-item {
  background: rgba(225, 7, 18, 0.1);
  border: 1px solid rgba(225, 7, 18, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.achievements-grid .achievement-item:hover {
  background: rgba(225, 7, 18, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(225, 7, 18, 0.3);
  border-color: rgba(225, 7, 18, 0.5);
}
.achievements-grid .achievement-item i {
  font-size: 2.5rem;
  color: #E10712;
  margin-bottom: 1rem;
  display: block;
}
@media (max-width: 767px) {
  .achievements-grid .achievement-item i {
    font-size: 2rem;
  }
}
.achievements-grid .achievement-item h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .achievements-grid .achievement-item h4 {
    font-size: 1rem;
  }
}

.service-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 4, 12, 0.95) 0%, rgba(153, 25, 22, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4rem 3rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-section-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-cta {
    padding: 3rem 2rem;
    margin-top: 3rem;
  }
}
.service-cta .cta-text {
  font-size: 1.3rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .service-cta .cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.service-cta .cta-button {
  font-size: 1.2rem;
  padding: 1.5rem 3rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .service-cta .cta-button {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
  }
}

.page-hero-section {
  position: relative;
  overflow: hidden;
  padding: 200px 0 100px;
  background-image: linear-gradient(145deg, #00040C 70%, #991916 50%);
}
@media (max-width: 991px) {
  .page-hero-section {
    padding: 150px 0 100px;
    background-image: linear-gradient(180deg, #00040C 70%, #991916 50%);
  }
}
.page-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.2) 25%, rgba(225, 7, 18, 0.08) 50%, rgba(153, 25, 22, 0.03) 75%, rgba(225, 7, 18, 0.1) 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.page-hero-section .hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}
.page-hero-section .hero-title .highlight {
  color: #E10712;
}
@media (max-width: 991px) {
  .page-hero-section .hero-title {
    text-align: center;
  }
}
.page-hero-section p {
  color: #fff;
}
@media (max-width: 991px) {
  .page-hero-section p {
    text-align: center;
  }
}
.page-hero-section video {
  width: 100%;
  transform: skewX(-10deg);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(0, 4, 12, 0.5));
}
@media (max-width: 991px) {
  .page-hero-section video {
    transform: skewX(0deg);
  }
}
.page-hero-section .hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .page-hero-section .hero-cta {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .page-hero-section .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
}
.page-hero-section .hero-image {
  width: 100%;
}
@media (max-width: 991px) {
  .page-hero-section .hero-image {
    margin-top: 2rem;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.feature-card {
  padding: 2rem 1.5rem;
  display: inline-flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(153, 25, 22, 0.24);
  color: #fff;
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif;
  background: #18080e;
  transition: all 0.3s ease;
  gap: 1rem;
  height: 100%;
}
.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0.5rem 0 0;
}
.feature-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.feature-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #991916;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.feature-card .icon i {
  color: #E10712;
  font-size: 2rem;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: scale(1.05);
}
.feature-card:hover .icon {
  border-color: #fff;
}
.feature-card:hover .icon i {
  color: #fff;
}
.feature-card:before, .feature-card:after {
  display: block;
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #E10712 0%, #991916 100%);
  z-index: -1;
}

.feature-card--outline:before {
  top: -0.1rem;
  bottom: 100%;
  left: -0.1rem;
  right: calc(100% + 0.1rem);
  transition: left 0.5s, right 0.5s, bottom 0.5s;
}
.feature-card--outline:after {
  top: 100%;
  bottom: -0.1rem;
  left: calc(100% + 0.1rem);
  right: -0.1rem;
  transition: left 0.5s, right 0.5s, top 0.5s;
}
.feature-card--outline:hover:before {
  top: -0.1rem;
  bottom: 0;
  left: -0.1rem;
  right: 0;
}
.feature-card--outline:hover:after {
  top: 0;
  bottom: -0.1rem;
  left: 0;
  right: -0.1rem;
}

.service-grid {
  margin-top: 2rem;
}

.feature-card--large {
  padding: 3rem 2rem;
  min-height: 280px;
  background: linear-gradient(135deg, #18080e 0%, #2a0f15 100%);
  border: 2px solid rgba(225, 7, 18, 0.3);
  position: relative;
  overflow: hidden;
}
.feature-card--large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card--large:hover::before {
  opacity: 1;
}

.feature-card--medium {
  padding: 2.5rem 1.5rem;
  min-height: 240px;
  background: linear-gradient(135deg, #18080e 0%, #1f0a10 100%);
  border: 1px solid rgba(225, 7, 18, 0.2);
}

.feature-card--compact {
  padding: 2rem 1.5rem;
  min-height: 200px;
  background: linear-gradient(135deg, #18080e 0%, #1a0b0e 100%);
  border: 1px solid rgba(225, 7, 18, 0.15);
}

.feature-card--primary {
  border-color: rgba(225, 7, 18, 0.4);
}

.feature-card--secondary {
  border-color: rgba(0, 123, 255, 0.4);
}

.feature-card--accent {
  border-color: rgba(255, 193, 7, 0.4);
}

.feature-card--success {
  border-color: rgba(40, 167, 69, 0.4);
}

.feature-card--info {
  border-color: rgba(23, 162, 184, 0.4);
}

.feature-card--warning {
  border-color: rgba(255, 193, 7, 0.4);
}

.feature-card--dark {
  border-color: rgba(108, 117, 125, 0.4);
}

.icon-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.2) 0%, rgba(153, 25, 22, 0.1) 100%);
  border: 2px solid rgba(225, 7, 18, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.icon-large i {
  color: #E10712;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.feature-card--large:hover .icon-large {
  border-color: #E10712;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.3) 0%, rgba(153, 25, 22, 0.2) 100%);
  transform: scale(1.1);
}
.feature-card--large:hover .icon-large i {
  color: #fff;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.feature-tag {
  background: rgba(225, 7, 18, 0.2);
  color: #E10712;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(225, 7, 18, 0.3);
  transition: all 0.3s ease;
}
.feature-tag:hover {
  background: rgba(225, 7, 18, 0.3);
  border-color: #E10712;
  transform: translateY(-2px);
}

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

.feature-card--large .card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.feature-card--large .card-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-card--medium .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card--compact .card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
  .feature-card--large {
    padding: 2rem 1.5rem;
    min-height: 240px;
  }
  .feature-card--medium {
    padding: 2rem 1.5rem;
    min-height: 200px;
  }
  .icon-large {
    width: 60px;
    height: 60px;
  }
  .icon-large i {
    font-size: 2rem;
  }
  .feature-card--large .card-content h3 {
    font-size: 1.5rem;
  }
}
.ideal-for-card {
  background: linear-gradient(135deg, rgba(24, 8, 14, 0.9) 0%, rgba(42, 15, 21, 0.9) 100%);
  border: 2px solid rgba(225, 7, 18, 0.3);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.ideal-for-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.ideal-for-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 7, 18, 0.6);
  box-shadow: 0 20px 40px rgba(225, 7, 18, 0.2);
}
.ideal-for-card:hover::before {
  opacity: 1;
}
.ideal-for-card:hover .icon-wrapper {
  border-color: #E10712;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.3) 0%, rgba(153, 25, 22, 0.2) 100%);
  transform: scale(1.1);
}
.ideal-for-card:hover .icon-wrapper i {
  color: #fff;
}
.ideal-for-card:hover .benefit-points li {
  color: #fff;
}
.ideal-for-card:hover .benefit-points li::before {
  color: #fff;
}
.ideal-for-card .card-header {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}
.ideal-for-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.2) 0%, rgba(153, 25, 22, 0.1) 100%);
  border: 2px solid rgba(225, 7, 18, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 1rem;
  transition: all 0.4s ease;
}
.ideal-for-card .icon-wrapper i {
  color: #E10712;
  font-size: 2.2rem;
  transition: all 0.4s ease;
}
.ideal-for-card .card-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.ideal-for-card .card-body {
  position: relative;
  z-index: 2;
}
.ideal-for-card .card-body p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.ideal-for-card .benefit-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ideal-for-card .benefit-points li {
  color: #E10712;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(225, 7, 18, 0.2);
  position: relative;
  padding-left: 1.5rem;
}
.ideal-for-card .benefit-points li:last-child {
  border-bottom: none;
}
.ideal-for-card .benefit-points li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #E10712;
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .ideal-for-card {
    padding: 1.5rem;
  }
  .ideal-for-card .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  .ideal-for-card .icon-wrapper i {
    font-size: 1.8rem;
  }
  .ideal-for-card .card-header h3 {
    font-size: 1.2rem;
  }
}

.offering-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.offering-list li {
  display: flex;
  gap: 1rem;
}
.offering-list li .content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: calc(100% - 48px);
}
.offering-list li .icon {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: #E10712;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offering-list li .icon i {
  color: #fff;
  font-size: 1.5rem;
}
.offering-list li h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #00040C;
  font-weight: 600;
}
.offering-list li p {
  color: #00040C;
  font-size: 1rem;
  margin: 0;
}

.section-image {
  position: relative;
  z-index: 2;
  transform: skewX(-10deg);
}
.section-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(0 0 2rem rgba(0, 4, 12, 0.5));
}
@media (max-width: 991px) {
  .section-image {
    margin: 2rem 0 0;
    transform: skewX(0deg);
  }
}

.body-text-light {
  color: #ccc;
}

.body-text-dark {
  color: #00040C;
}

.why-choose-section {
  position: relative;
  overflow: hidden;
}
.why-choose-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(225, 7, 18, 0.3) 0%, rgba(153, 25, 22, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  animation: float 5s ease-in-out infinite;
  z-index: 1;
}
.why-choose-section::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(153, 25, 22, 0.2) 0%, rgba(225, 7, 18, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: float 6s ease-in-out infinite reverse;
  z-index: 1;
}

@keyframes float {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) scale(1.1) rotate(90deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.9) rotate(180deg);
  }
  75% {
    transform: translate(-50%, -50%) scale(1.05) rotate(270deg);
  }
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.benefits-list .benefit-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.benefits-list .benefit-item i {
  color: #E10712;
  font-size: 1.5rem;
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.3) 0%, #991916 100%);
  border-radius: 2rem;
  padding: 2rem;
  margin-bottom: 5rem;
}
.final-cta p {
  text-align: center;
}
.final-cta .cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: center;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: flex-start;
}
.hero-stats .stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-stats .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  border-color: #E10712;
}
.hero-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #E10712;
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Avenir Next Cyr", sans-serif;
}
.hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-social-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.floating-social-icons .social-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(225, 7, 18, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-social 3s ease-in-out infinite;
  animation-delay: 0s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.3);
}
.floating-social-icons .social-icon i {
  font-size: 1.5rem;
  color: #E10712;
}
.floating-social-icons .social-icon:nth-child(1) {
  top: 20%;
  left: 10%;
}
.floating-social-icons .social-icon:nth-child(2) {
  top: 60%;
  left: 80%;
}
.floating-social-icons .social-icon:nth-child(3) {
  top: 80%;
  left: 20%;
}
.floating-social-icons .social-icon:nth-child(4) {
  top: 30%;
  left: 70%;
}
.floating-social-icons .social-icon:nth-child(5) {
  top: 70%;
  left: 60%;
}

.interactive-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.interactive-card .card-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #991916;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.interactive-card .card-hover-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: disc;
}
.interactive-card .card-hover-content li {
  color: #fff;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.interactive-card .card-hover-content li:nth-child(1) {
  transition-delay: 0.1s;
}
.interactive-card .card-hover-content li:nth-child(2) {
  transition-delay: 0.2s;
}
.interactive-card .card-hover-content li:nth-child(3) {
  transition-delay: 0.3s;
}
.interactive-card .card-hover-content li:nth-child(4) {
  transition-delay: 0.4s;
}
.interactive-card .card-hover-content li:nth-child(5) {
  transition-delay: 0.5s;
}
.interactive-card:hover .card-hover-content {
  opacity: 1;
  transform: translateY(0);
}
.interactive-card:hover .card-hover-content li {
  opacity: 1;
  transform: translateY(0);
}

.interactive-list {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: visible;
}
.row .interactive-list, .col-lg-6 .interactive-list {
  overflow: visible;
}
.interactive-list .offering-item {
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
  overflow: visible;
}
.interactive-list .offering-item:hover {
  transform: translateX(10px);
}
.interactive-list .offering-item .hover-details {
  position: absolute;
  top: 0;
  left: 40px;
  background: rgba(0, 4, 12, 0.95);
  padding: 1rem;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.3);
  z-index: 10001;
  pointer-events: auto;
  white-space: normal;
  word-wrap: break-word;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.interactive-list .offering-item .hover-details span {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .interactive-list .offering-item .hover-details {
    visibility: visible;
    opacity: 1;
    position: relative;
    left: auto;
    right: 0;
    transform: none !important;
    top: 0;
    box-shadow: none;
    background: transparent;
  }
  .interactive-list .offering-item .hover-details span {
    color: #00040C;
  }
}
.interactive-list .offering-item:hover .hover-details {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10%) translateX(8px);
}
@media (max-width: 991px) {
  .interactive-list .offering-item .hover-details {
    left: auto;
    right: 0;
    transform: translateY(-50%);
  }
  .interactive-list .offering-item:hover .hover-details {
    transform: translateY(-50%) translateX(-10px);
  }
}

.platform-icons-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.platform-icons-overlay .platform-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(225, 7, 18, 0.1);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.2);
}
.platform-icons-overlay .platform-icon i {
  font-size: 1.5rem;
  color: #E10712;
  margin-bottom: 0.2rem;
}
.platform-icons-overlay .platform-icon .platform-name {
  font-size: 0.7rem;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.platform-icons-overlay .platform-icon:hover {
  background: rgba(225, 7, 18, 0.3);
  transform: scale(1.2) rotate(5deg);
}
.platform-icons-overlay .platform-icon:hover .platform-name {
  opacity: 1;
  transform: translateY(0);
}
.platform-icons-overlay .platform-icon:nth-child(1) {
  top: 10%;
  left: 10%;
}
.platform-icons-overlay .platform-icon:nth-child(2) {
  top: 20%;
  right: 15%;
}
.platform-icons-overlay .platform-icon:nth-child(3) {
  top: 50%;
  left: 5%;
}
.platform-icons-overlay .platform-icon:nth-child(4) {
  bottom: 30%;
  right: 10%;
}
.platform-icons-overlay .platform-icon:nth-child(5) {
  bottom: 10%;
  left: 50%;
}

.content-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .content-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .content-types-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.content-types-grid .content-type-item {
  background: rgba(245, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.content-types-grid .content-type-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 7, 18, 0.2), transparent);
  transition: left 0.5s ease;
}
.content-types-grid .content-type-item:hover::before {
  left: 100%;
}
.content-types-grid .content-type-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #E10712;
  box-shadow: 0 15px 40px rgba(225, 7, 18, 0.2);
}
@media (max-width: 767px) {
  .content-types-grid .content-type-item {
    padding: 1.5rem;
  }
}
.content-types-grid .content-type-item .content-type-icon {
  width: 80px;
  height: 80px;
  background: rgba(225, 7, 18, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(225, 7, 18, 0.3);
}
.content-types-grid .content-type-item .content-type-icon i {
  font-size: 2rem;
  color: #E10712;
}
.content-types-grid .content-type-item:hover .content-type-icon {
  background: rgba(225, 7, 18, 0.4);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(225, 7, 18, 0.5);
}
@media (max-width: 767px) {
  .content-types-grid .content-type-item .content-type-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
}
.content-types-grid .content-type-item h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.content-types-grid .content-type-item p {
  color: #ccc;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .content-types-grid .content-type-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  .content-types-grid .content-type-item p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
}
.content-types-grid .content-type-item .content-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.content-types-grid .content-type-item .content-stats .stat {
  font-size: 2rem;
  font-weight: bold;
  color: #E10712;
  font-family: "Avenir Next Cyr", sans-serif;
}
.content-types-grid .content-type-item .content-stats .label {
  font-size: 0.8rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.interactive-step {
  position: relative;
  transition: all 0.3s ease;
}
.interactive-step .step-details {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 4, 12, 0.95);
  padding: 1.5rem;
  border-radius: 10px;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.3);
  z-index: 10;
  margin-top: 1rem;
}
.interactive-step .step-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.interactive-step .step-details li {
  color: #fff;
  margin: 0.5rem 0;
  font-size: 0.85rem;
  padding-left: 1rem;
  position: relative;
}
.interactive-step .step-details li::before {
  content: "•";
  color: #E10712;
  position: absolute;
  left: 0;
}
.interactive-step:hover .step-details {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.team-stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.team-stats-overlay .stat-bubble {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(225, 7, 18, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.3);
  transition: all 0.3s ease;
}
.team-stats-overlay .stat-bubble:hover {
  transform: scale(1.1);
  background: rgba(225, 7, 18, 0.4);
}
.team-stats-overlay .stat-bubble .stat-number {
  font-size: 1.2rem;
  font-weight: bold;
  color: #E10712;
  line-height: 1;
}
.team-stats-overlay .stat-bubble .stat-label {
  font-size: 0.7rem;
  color: #fff;
  text-align: center;
  line-height: 1;
}
.team-stats-overlay .stat-bubble:nth-child(1) {
  top: 20%;
  left: 10%;
}
.team-stats-overlay .stat-bubble:nth-child(2) {
  top: 60%;
  right: 15%;
}
.team-stats-overlay .stat-bubble:nth-child(3) {
  bottom: 20%;
  left: 50%;
}

.interactive-benefits .benefit-item {
  position: relative;
  transition: all 0.3s ease;
}
.interactive-benefits .benefit-item:hover {
  transform: translateX(10px);
}
.interactive-benefits .benefit-item .benefit-hover {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 4, 12, 0.95);
  padding: 1rem;
  border-radius: 10px;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.3);
  z-index: 10;
}
.interactive-benefits .benefit-item .benefit-hover p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}
.interactive-benefits .benefit-item:hover .benefit-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(10px);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes float-social {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@media (max-width: 991px) {
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
  .hero-stats .stat-item {
    padding: 0.8rem;
  }
  .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
  .floating-social-icons .social-icon {
    width: 40px;
    height: 40px;
  }
  .floating-social-icons .social-icon i {
    font-size: 1.2rem;
  }
  .content-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .platform-icon {
    width: 50px;
    height: 50px;
  }
  .platform-icon i {
    font-size: 1.2rem;
  }
  .stat-bubble {
    width: 60px;
    height: 60px;
  }
  .stat-bubble .stat-number {
    font-size: 1rem;
  }
  .stat-bubble .stat-label {
    font-size: 0.6rem;
  }
}
@media (max-width: 767px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-stats .stat-item {
    padding: 1rem;
  }
  .floating-social-icons {
    display: none;
  }
  .content-types-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .platform-icons-overlay {
    display: none;
  }
  .team-stats-overlay {
    display: none;
  }
  .interactive-step .step-details {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
  }
  .interactive-list .offering-item .hover-details,
  .interactive-benefits .benefit-hover {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
  }
}
.horizontal-cards-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.interactive-workflow-section {
  position: relative;
  overflow: hidden;
}
.interactive-workflow-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.02) 0%, rgba(153, 25, 22, 0.01) 100%);
  pointer-events: none;
  z-index: 1;
}
.interactive-workflow-section .container {
  position: relative;
  z-index: 2;
}

.interactive-timeline {
  position: relative;
}
.interactive-timeline .timeline-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #E10712;
  margin: 0 auto;
  display: block;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .interactive-timeline .timeline-progress {
    left: 30px;
    transform: none;
  }
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}
.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-step:nth-child(even) .step-content {
  text-align: right;
}
@media (max-width: 767px) {
  .timeline-step:nth-child(even) .step-content {
    text-align: left;
  }
}
.timeline-step:nth-child(even) .step-details {
  right: 0;
  left: auto;
}
@media (max-width: 767px) {
  .timeline-step:nth-child(even) .step-details {
    right: auto;
    left: 0;
  }
}
.timeline-step:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .timeline-step {
    flex-direction: row !important;
    margin-bottom: 3rem;
  }
}

.step-marker {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 2rem;
}
@media (max-width: 767px) {
  .step-marker {
    width: 80px;
    height: 80px;
    margin: 0 1rem;
    flex-shrink: 0;
  }
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #E10712;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(225, 7, 18, 0.3);
}
@media (max-width: 767px) {
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
    top: -8px;
    right: -8px;
  }
}

.step-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(225, 7, 18, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.step-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step-icon i {
  font-size: 2.5rem;
  color: #E10712;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .step-icon {
    width: 60px;
    height: 60px;
  }
  .step-icon i {
    font-size: 1.8rem;
  }
}

.step-content {
  flex: 1;
  max-width: 400px;
  position: relative;
}
@media (max-width: 767px) {
  .step-content {
    max-width: none;
  }
}
.step-content h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
}
.step-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .step-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

.step-details {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 4, 12, 0.95);
  padding: 1.5rem;
  border-radius: 15px;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.3);
  z-index: 100;
}
@media (max-width: 767px) {
  .step-details {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    background: rgba(225, 7, 18, 0.1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.step-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-details ul li {
  color: #fff;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.step-details ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #E10712;
  font-weight: bold;
}
@media (max-width: 767px) {
  .step-details ul li {
    color: #00040C;
  }
}

.timeline-step:hover .step-details {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .timeline-step:hover .step-details {
    transform: none;
  }
}

.timeline-step:hover .step-icon {
  border-color: #E10712;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(225, 7, 18, 0.3);
}
.timeline-step:hover .step-icon::before {
  opacity: 1;
}
.timeline-step:hover .step-icon i {
  color: #fff;
  transform: scale(1.1);
}

.timeline-step:hover .step-number {
  background: linear-gradient(135deg, #E10712, #991916);
  color: #fff;
}

.workflow-stats {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 2px solid rgba(225, 7, 18, 0.1);
}
.workflow-stats .stat-item {
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}
.workflow-stats .stat-item:hover {
  transform: translateY(-5px);
}
.workflow-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #E10712;
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Avenir Next Cyr", sans-serif;
}
@media (max-width: 767px) {
  .workflow-stats .stat-item .stat-number {
    font-size: 2rem;
  }
}
.workflow-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .workflow-stats .stat-item .stat-label {
    font-size: 0.8rem;
  }
}

.flip-cards-grid {
  margin-top: 3rem;
}

.flip-card {
  perspective: 1000px;
  height: 300px;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .flip-card {
    height: 280px;
  }
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.flip-card-front {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(225, 7, 18, 0.1);
}
.flip-card-front:hover {
  border-color: rgba(225, 7, 18, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.flip-card-back {
  background: linear-gradient(135deg, #E10712, #991916);
  color: #fff;
  transform: rotateY(180deg);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: rgba(225, 7, 18, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(225, 7, 18, 0.2);
  transition: all 0.3s ease;
}
.card-icon i {
  font-size: 2.5rem;
  color: #E10712;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .card-icon i {
    font-size: 2rem;
  }
}

.flip-card-front:hover .card-icon {
  background: rgba(225, 7, 18, 0.2);
  border-color: #E10712;
  transform: scale(1.1);
}
.flip-card-front:hover .card-icon i {
  color: #E10712;
}

.flip-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .flip-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
}

.flip-card-front h4 {
  color: #00040C;
}

.flip-card-back h4 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.flip-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .flip-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

.flip-card-front p {
  color: #00040C;
  opacity: 0.8;
}

.flip-card-back p {
  color: #fff;
  opacity: 0.9;
}

.card-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}
.card-stats .stat {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  font-family: "Avenir Next Cyr", sans-serif;
}
@media (max-width: 767px) {
  .card-stats .stat {
    font-size: 2rem;
  }
}
.card-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .card-stats .stat-label {
    font-size: 0.8rem;
  }
}

.flip-card:hover .flip-card-front {
  transform: translateY(-5px);
}
.flip-card:hover .flip-card-back {
  transform: rotateY(180deg) translateY(-5px);
}

@media (max-width: 991px) {
  .flip-card {
    height: 320px;
  }
  .flip-card-front,
  .flip-card-back {
    padding: 1.5rem 1rem;
  }
  .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }
  .card-icon i {
    font-size: 2.25rem;
  }
}
@media (max-width: 575px) {
  .flip-card {
    height: 300px;
  }
  .flip-card-front,
  .flip-card-back {
    padding: 1.25rem 0.75rem;
  }
  .card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1rem;
  }
  .card-icon i {
    font-size: 1.75rem;
  }
  .flip-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .flip-card p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  .card-stats .stat {
    font-size: 1.75rem;
  }
  .card-stats .stat-label {
    font-size: 0.75rem;
  }
}
.seo-features-grid {
  margin-top: 4rem;
}
.seo-features-grid .row {
  margin: 0;
}
.seo-features-grid .col-lg-4,
.seo-features-grid .col-md-6 {
  padding: 0.75rem;
}

.seo-feature-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(225, 7, 18, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.seo-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(225, 7, 18, 0.15);
  border-color: rgba(225, 7, 18, 0.3);
}
.seo-feature-card .card-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.05) 0%, transparent 50%, rgba(225, 7, 18, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.seo-feature-card:hover .card-glow-effect {
  opacity: 1;
}
.seo-feature-card .feature-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.seo-feature-card .feature-card-header .feature-icon-wrapper {
  position: relative;
}
.seo-feature-card .feature-card-header .feature-icon-wrapper .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E10712, #b0050e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(225, 7, 18, 0.3);
  transition: all 0.3s ease;
}
.seo-feature-card .feature-card-header .feature-icon-wrapper .icon-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 2px solid rgba(225, 7, 18, 0.2);
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s infinite;
}
.seo-feature-card .feature-card-header .feature-badge {
  background: linear-gradient(135deg, #E10712, #97050c);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(225, 7, 18, 0.3);
}
.seo-feature-card .feature-card-header .feature-badge.pulse-badge {
  animation: pulse 2s infinite;
}
.seo-feature-card .feature-card-body {
  margin-bottom: 1.5rem;
}
.seo-feature-card .feature-card-body .card-title {
  color: #00040C;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.seo-feature-card .feature-card-body .feature-subtitle {
  color: #E10712;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.seo-feature-card .feature-card-body .feature-description {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.seo-feature-card .feature-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.seo-feature-card .feature-card-footer .feature-tag {
  background: rgba(225, 7, 18, 0.1);
  color: #E10712;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(225, 7, 18, 0.2);
  transition: all 0.3s ease;
}
.seo-feature-card .feature-card-footer .feature-tag:hover {
  background: #E10712;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 7, 18, 0.3);
}

.interactive-card {
  cursor: pointer;
}
.interactive-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(225, 7, 18, 0.5);
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 991px) {
  .seo-features-grid {
    margin-top: 3rem;
  }
  .seo-features-grid .col-lg-4,
  .seo-features-grid .col-md-6 {
    padding: 0.5rem;
  }
  .seo-feature-card {
    padding: 1.5rem;
  }
  .seo-feature-card .feature-card-header {
    margin-bottom: 1.25rem;
  }
  .seo-feature-card .feature-card-header .feature-icon-wrapper .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .seo-feature-card .feature-card-header .feature-badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }
  .seo-feature-card .feature-card-body .card-title {
    font-size: 1.1rem;
  }
  .seo-feature-card .feature-card-body .feature-subtitle {
    font-size: 0.8rem;
  }
  .seo-feature-card .feature-card-body .feature-description {
    font-size: 0.85rem;
  }
}
@media (max-width: 767px) {
  .seo-features-grid {
    margin-top: 2rem;
  }
  .seo-features-grid .col-lg-4,
  .seo-features-grid .col-md-6 {
    padding: 0.25rem;
  }
  .seo-feature-card {
    padding: 1.25rem;
  }
  .seo-feature-card .feature-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .seo-feature-card .feature-card-header .feature-badge {
    align-self: center;
  }
  .seo-feature-card .feature-card-footer {
    justify-content: center;
  }
}
.chandu-hero-section {
  padding: 100px 0 0;
}

.hero-slider-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider-section .hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.hero-slider-section .hero-slider {
  position: relative;
}
.hero-slider-section .hero-slider .hero-slide {
  position: relative;
  width: 100%;
}
.hero-slider-section .hero-slider .hero-slide .hero-slide-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 750px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slider-section .hero-slider .hero-slide .hero-slide-content {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-slider-section .hero-slider .hero-slide .hero-slide-content .hero-slide-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-slider-section .hero-slider .hero-slide .hero-slide-content .hero-slide-meta .hero-slide-category {
  background: #E10712;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-slider-section .hero-slider .hero-slide .hero-slide-content .hero-slide-meta .hero-slide-date {
  color: #ccc;
  font-size: 0.9rem;
}
.hero-slider-section .hero-slider .hero-slide .hero-slide-content .hero-slide-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-slider-section .hero-slider .hero-slide .hero-slide-content .hero-slide-excerpt {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #e0e0e0;
  max-width: 600px;
}
.hero-slider-section .hero-slider .hero-slide .hero-slide-content .hero-slide-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-slider-section .hero-slider .hero-slide .hero-slide-content .hero-read-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-slider-section .hero-slider .hero-slide .hero-slide-content .hero-read-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 3;
  pointer-events: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}
.owl-carousel .owl-nav .owl-prev {
  left: 2rem;
}
.owl-carousel .owl-nav .owl-next {
  right: 2rem;
}
.owl-carousel .owl-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.owl-carousel .owl-dots .owl-dot.active {
  background: #E10712;
  transform: scale(1.2);
}

.c-blocks {
  border: thin solid #E10712;
}
.c-blocks .col-sm-12 {
  padding: 0;
}
.c-blocks .c3-block {
  display: grid;
  grid-template-columns: 96px 1fr;
  grid-template-rows: 1fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  transition: all 0.3s ease;
  padding: 1.5rem 1rem;
  align-items: center;
  border-left: thick solid transparent;
}
.c-blocks .c3-block:hover {
  background-color: #E10712;
}
.c-blocks .c3-block i {
  font-size: 2.5rem;
  color: #fff;
  display: block;
  transition: all 0.3s ease;
  grid-area: 1/1/3/2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E10712;
}
.c-blocks .c3-block .block-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  transition: color 0.3s ease;
  grid-area: 1/2/2/3;
}
.c-blocks .c3-block .block-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
  grid-area: 2/2/3/3;
}
.c-blocks .c3-block:hover {
  border-color: white;
}
.c-blocks .c3-block:hover i {
  background: #fff;
  color: #E10712;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.c-blocks .c3-block:hover .block-description {
  color: #fff;
}
@media (max-width: 991px) {
  .c-blocks .col-lg-2 {
    display: none;
  }
}
.c-blocks .c-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  background: #E10712;
  position: relative;
  box-shadow: 0 0 50px rgba(225, 7, 18, 0.3);
  transition: all 0.3s ease;
}
.c-blocks .c-circle:hover {
  box-shadow: 0 0 70px rgba(225, 7, 18, 0.5);
}
.c-blocks .c-circle:hover::before {
  opacity: 1;
}
.c-blocks .c-circle h2 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.c-blocks .c-circle h2 small {
  font-size: 2rem;
  font-weight: 300;
  opacity: 0.8;
}
.c-blocks .c-circle p {
  font-size: 0.9rem;
  color: #fff;
  margin: 0.5rem 0 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  opacity: 0.9;
}
.c-blocks .block-reverse {
  direction: rtl;
  border-right: thick solid transparent;
  border-left: none;
}
@media (max-width: 991px) {
  .c-blocks .block-reverse {
    direction: ltr;
    border-right: none;
    border-left: thick solid transparent;
  }
}

.section .subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 3rem;
  font-weight: 300;
}
@media (max-width: 991px) {
  .section .row {
    min-height: auto;
  }
  .section .col-lg-2 {
    order: -1;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .section .subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #991916;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #646970;
  max-width: 600px;
  margin: 0 auto;
}

.blog-section {
  border-top: 1px solid #222;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  gap: 1.5rem;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(225, 7, 18, 0.3);
}
.blog-card:hover::before {
  opacity: 1;
}
.blog-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}
.blog-card:hover .service-icon i {
  color: #E10712;
  filter: drop-shadow(0 0 20px rgba(225, 7, 18, 0.8));
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card .blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card .blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #E10712;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.blog-card .blog-card-content {
  padding: 1.5rem;
}
.blog-card .blog-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #666;
}
.blog-card .blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-card .blog-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.blog-card .blog-card-title a {
  color: #E10712;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card .blog-card-title a:hover {
  color: #fff;
}
.blog-card .blog-card-excerpt {
  color: #646970;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.blog-card .blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card .read-more-link {
  color: #991916;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.blog-card .read-more-link:hover {
  color: #fff;
}
.blog-card .blog-card-stats {
  font-size: 0.9rem;
  color: #666;
}

.blog-sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar-widget {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.widget-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #991916;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f1;
}

.search-form {
  display: flex;
  gap: 0.5rem;
}
.search-form input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem;
}
.search-form button {
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories-list li {
  margin-bottom: 0.5rem;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  color: #646970;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.category-link:hover {
  background: #f8f9fa;
  color: #E10712;
}

.category-count {
  background: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-link {
  background: #f8f9fa;
  color: #495057;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.tag-link:hover {
  background: #E10712;
  color: white;
}

.newsletter-form input {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem;
}
.newsletter-form button {
  width: 100%;
  border-radius: 8px;
}

.featured-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-post-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f1;
}
.featured-post-item:last-child {
  border-bottom: none;
}

.featured-post-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.featured-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-post-content {
  flex: 1;
}

.featured-post-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.featured-post-title a {
  color: #991916;
  text-decoration: none;
}
.featured-post-title a:hover {
  color: #E10712;
}

.featured-post-date {
  font-size: 0.8rem;
  color: #666;
}

.infinite-scroll-loader {
  text-align: center;
  padding: 2rem;
}

.loader-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #E10712;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .hero-slider-section {
    height: 60vh;
    min-height: 400px;
  }
  .hero-slide-title {
    font-size: 2rem;
  }
  .hero-slide-excerpt {
    font-size: 1rem;
  }
  .hero-slide-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .hero-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .hero-nav-btn.prev {
    left: 1rem;
  }
  .hero-nav-btn.next {
    right: 1rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
.blog-detail-section {
  color: #ccc;
}
.blog-detail-section .blog-detail-section {
  padding: 4rem 0;
}
.blog-detail-section .blog-header {
  margin-bottom: 3rem;
  text-align: center;
}
.blog-detail-section .blog-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.blog-detail-section .blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}
.blog-detail-section .blog-meta i {
  color: #E10712;
}
.blog-detail-section .blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #991916;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.blog-detail-section .blog-excerpt {
  font-size: 1.2rem;
  color: #646970;
  line-height: 1.6;
  font-style: italic;
}
.blog-detail-section .blog-featured-image {
  margin: 2rem 0 3rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.blog-detail-section .blog-featured-image img {
  width: 100%;
  height: auto;
}
.blog-detail-section .blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
}
.blog-detail-section .blog-content h1,
.blog-detail-section .blog-content h2,
.blog-detail-section .blog-content h3,
.blog-detail-section .blog-content h4,
.blog-detail-section .blog-content h5,
.blog-detail-section .blog-content h6 {
  margin: 2rem 0 1rem 0;
  color: #ccc;
  font-weight: 600;
}
.blog-detail-section .blog-content h2 {
  font-size: 1.8rem;
}
.blog-detail-section .blog-content h3 {
  font-size: 1.5rem;
}
.blog-detail-section .blog-content p {
  margin-bottom: 1.5rem;
}
.blog-detail-section .blog-content ul,
.blog-detail-section .blog-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.blog-detail-section .blog-content li {
  margin-bottom: 0.5rem;
}
.blog-detail-section .blog-content a {
  color: #E10712;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.blog-detail-section .blog-content a:hover {
  border-bottom-color: #E10712;
}
.blog-detail-section .blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.blog-detail-section .blog-content blockquote {
  border-left: 4px solid #E10712;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #646970;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}
.blog-detail-section .blog-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e5e9;
}
.blog-detail-section .blog-share h5 {
  margin-bottom: 1rem;
  color: #991916;
  font-size: 1.1rem;
}
.blog-detail-section .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-detail-section .share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}
.blog-detail-section .share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: white;
}
.blog-detail-section .share-btn.facebook {
  background: #1877f2;
}
.blog-detail-section .share-btn.twitter {
  background: #1da1f2;
}
.blog-detail-section .share-btn.linkedin {
  background: #0077b5;
}
.blog-detail-section .share-btn.whatsapp {
  background: #25d366;
}
.blog-detail-section .related-blogs-section {
  padding: 4rem 0;
}
.blog-detail-section .related-blogs-section .blog-content {
  padding: 1rem;
}
.blog-detail-section .related-blogs-section .blog-card {
  background-color: #00040C;
}
@media (max-width: 768px) {
  .blog-detail-section .blog-title {
    font-size: 2rem;
  }
  .blog-detail-section .blog-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .blog-detail-section .share-buttons {
    justify-content: center;
  }
  .blog-detail-section .share-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

.about-content .expertise-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.about-content .expertise-tags .expertise-tag {
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.2) 0%, rgba(153, 25, 22, 0.1) 100%);
  border: 1px solid rgba(225, 7, 18, 0.4);
  color: #E10712;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-content .expertise-tags .expertise-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.about-content .expertise-tags .expertise-tag:hover {
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.3) 0%, rgba(153, 25, 22, 0.2) 100%);
  border-color: #E10712;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(225, 7, 18, 0.3);
}
.about-content .expertise-tags .expertise-tag:hover::before {
  left: 100%;
}
@media (max-width: 767px) {
  .about-content .expertise-tags .expertise-tag {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}
.about-content .about-description .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .about-content .about-description .lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}
.about-content .about-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #ccc;
}
@media (max-width: 767px) {
  .about-content .about-description p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
}
.about-content .about-description .highlight-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #E10712;
  font-style: italic;
  text-align: center;
  padding: 1rem;
  background: rgba(225, 7, 18, 0.1);
  border-radius: 10px;
  border-left: 4px solid #E10712;
}
@media (max-width: 767px) {
  .about-content .about-description .highlight-text {
    font-size: 1.1rem;
    padding: 0.8rem;
  }
}

.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.mission-card::before,
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  border-color: rgba(225, 7, 18, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.mission-card:hover::before,
.vision-card:hover::before {
  opacity: 1;
}
.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}
.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
  color: #E10712;
  filter: drop-shadow(0 0 20px rgba(225, 7, 18, 0.8));
}
.mission-card .card-icon,
.vision-card .card-icon {
  width: 80px;
  height: 80px;
  background: rgba(225, 7, 18, 0.1);
  border: 2px solid rgba(225, 7, 18, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
}
.mission-card .card-icon i,
.vision-card .card-icon i {
  font-size: 2.5rem;
  color: #E10712;
  transition: all 0.4s ease;
}
.mission-card h3,
.vision-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .mission-card h3,
  .vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
}
.mission-card p,
.vision-card p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .mission-card p,
  .vision-card p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .mission-card,
  .vision-card {
    padding: 2rem 1.5rem;
  }
  .mission-card .card-icon,
  .vision-card .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  .mission-card .card-icon i,
  .vision-card .card-icon i {
    font-size: 2rem;
  }
}

.values-grid .value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.values-grid .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.values-grid .value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 7, 18, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.values-grid .value-card:hover::before {
  opacity: 1;
}
.values-grid .value-card:hover .value-icon {
  border-color: #E10712;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.3) 0%, rgba(153, 25, 22, 0.2) 100%);
  transform: scale(1.1);
}
.values-grid .value-card:hover .value-icon i {
  color: #fff;
}
.values-grid .value-card .value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.2) 0%, rgba(153, 25, 22, 0.1) 100%);
  border: 2px solid rgba(225, 7, 18, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.values-grid .value-card .value-icon i {
  color: #E10712;
  font-size: 2.2rem;
  transition: all 0.4s ease;
}
.values-grid .value-card h4 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .values-grid .value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
}
.values-grid .value-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .values-grid .value-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .values-grid .value-card {
    padding: 2rem 1.5rem;
    min-height: 200px;
  }
  .values-grid .value-card .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .values-grid .value-card .value-icon i {
    font-size: 1.8rem;
  }
}

.page-hero-section .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  filter: drop-shadow(0 0 20px rgba(225, 7, 18, 0.3));
  transition: all 0.3s ease;
}
.page-hero-section .hero-image img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 30px rgba(225, 7, 18, 0.5));
}

.benefits-list .benefit-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
.benefits-list .benefit-item:hover {
  transform: translateX(10px);
}
.benefits-list .benefit-item:hover i {
  color: #E10712;
  transform: scale(1.2);
}
.benefits-list .benefit-item i {
  color: #E10712;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  min-width: 24px;
}
.benefits-list .benefit-item span {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .benefits-list .benefit-item span {
    font-size: 0.9rem;
  }
}

.final-cta {
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.3) 0%, rgba(153, 25, 22, 0.8) 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  border-radius: 2rem;
  animation: shimmer 3s ease-in-out infinite;
}
.final-cta .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .final-cta .cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.final-cta .cta-description {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .final-cta .cta-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.final-cta .cta-button {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .final-cta .cta-button {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .final-cta {
    padding: 2rem 1.5rem;
    margin: 3rem 0;
  }
}

@media (max-width: 991px) {
  .about-content .expertise-tags {
    justify-content: center;
  }
  .about-content .expertise-tags .expertise-tag {
    margin-bottom: 0.5rem;
  }
  .mission-card,
  .vision-card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .about-content .expertise-tags .expertise-tag {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  .values-grid .value-card {
    margin-bottom: 1.5rem;
  }
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(225, 7, 18, 0.2);
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-width: 120px;
  position: relative;
  overflow: hidden;
}
.hero-stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 7, 18, 0.1), transparent);
  transition: left 0.6s ease;
}
.hero-stats .stat-item:hover {
  transform: translateY(-5px);
  border-color: #E10712;
  box-shadow: 0 15px 35px rgba(225, 7, 18, 0.3);
}
.hero-stats .stat-item:hover::before {
  left: 100%;
}
.hero-stats .stat-item:hover .stat-number {
  color: #E10712;
  transform: scale(1.1);
}
.hero-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Avenir Next Cyr", sans-serif;
  transition: all 0.3s ease;
}
.hero-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .hero-stats .stat-item {
    padding: 1rem;
    min-width: 100px;
  }
  .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
  .hero-stats .stat-item .stat-label {
    font-size: 0.75rem;
  }
}
@media (max-width: 991px) {
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-stats .stat-item {
    width: 100%;
    max-width: 200px;
  }
}

.page-hero-section .floating-elements .floating-element {
  position: absolute;
  opacity: 0.8;
  transition: all 0.4s ease;
  z-index: 10;
}
.page-hero-section .floating-elements .floating-element:hover {
  opacity: 1;
  transform: scale(1.2) rotate(10deg);
}
.page-hero-section .floating-elements .floating-element .element-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.page-hero-section .floating-elements .floating-element .element-content i {
  font-size: 2rem;
  color: #E10712;
  filter: drop-shadow(0 0 15px rgba(225, 7, 18, 0.6));
  transition: all 0.3s ease;
}
.page-hero-section .floating-elements .floating-element.element-1 {
  top: 10%;
  left: 10%;
  width: 60px;
  height: 60px;
  animation: float-about-1 8s ease-in-out infinite;
}
@media (max-width: 767px) {
  .page-hero-section .floating-elements .floating-element.element-1 {
    width: 50px;
    height: 50px;
  }
}
.page-hero-section .floating-elements .floating-element.element-2 {
  top: 20%;
  right: 15%;
  width: 70px;
  height: 70px;
  animation: float-about-2 10s ease-in-out infinite;
}
@media (max-width: 767px) {
  .page-hero-section .floating-elements .floating-element.element-2 {
    width: 55px;
    height: 55px;
  }
}
.page-hero-section .floating-elements .floating-element.element-3 {
  top: 50%;
  left: 5%;
  width: 50px;
  height: 50px;
  animation: float-about-3 12s ease-in-out infinite;
}
@media (max-width: 767px) {
  .page-hero-section .floating-elements .floating-element.element-3 {
    width: 40px;
    height: 40px;
  }
}

@keyframes float-about-1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes float-about-2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(-5deg);
  }
}
@keyframes float-about-3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(10deg);
  }
}
.interactive-timeline {
  position: relative;
  padding: 2rem 0;
}
.interactive-timeline .timeline-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #E10712, #991916, #E10712);
  margin: 0 auto;
  display: block;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .interactive-timeline .timeline-progress {
    left: 30px;
    transform: none;
  }
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  z-index: 2;
}
.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-step:nth-child(even) .step-content {
  text-align: right;
}
@media (max-width: 767px) {
  .timeline-step:nth-child(even) .step-content {
    text-align: left;
  }
}
.timeline-step:nth-child(even) .step-details {
  right: 0;
  left: auto;
}
@media (max-width: 767px) {
  .timeline-step:nth-child(even) .step-details {
    right: auto;
    left: 0;
  }
}
.timeline-step:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .timeline-step {
    flex-direction: row !important;
    margin-bottom: 3rem;
  }
}

.step-marker {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 2rem;
}
@media (max-width: 767px) {
  .step-marker {
    width: 80px;
    height: 80px;
    margin: 0 1rem;
    flex-shrink: 0;
  }
}

.step-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(225, 7, 18, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.step-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step-icon i {
  font-size: 2.5rem;
  color: #E10712;
  transition: all 0.4s ease;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .step-icon {
    width: 60px;
    height: 60px;
  }
  .step-icon i {
    font-size: 1.8rem;
  }
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #E10712;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(225, 7, 18, 0.3);
}
@media (max-width: 767px) {
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
    top: -8px;
    right: -8px;
  }
}

.step-content {
  flex: 1;
  max-width: 400px;
  position: relative;
}
@media (max-width: 767px) {
  .step-content {
    max-width: none;
  }
}
.step-content h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
}
.step-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .step-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

.step-details {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 4, 12, 0.95);
  padding: 1.5rem;
  border-radius: 15px;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.3);
  z-index: 100;
}
@media (max-width: 767px) {
  .step-details {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    background: rgba(225, 7, 18, 0.1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.step-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-details ul li {
  color: #fff;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.step-details ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #E10712;
  font-weight: bold;
}
@media (max-width: 767px) {
  .step-details ul li {
    color: #00040C;
  }
}

.timeline-step:hover .step-details {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .timeline-step:hover .step-details {
    transform: none;
  }
}
.timeline-step:hover .step-icon {
  border-color: #E10712;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(225, 7, 18, 0.3);
}
.timeline-step:hover::before {
  opacity: 1;
}
.timeline-step:hover i {
  color: #fff;
  transform: scale(1.1);
}

.step-number {
  background: linear-gradient(135deg, #E10712, #991916);
  color: #fff;
}

@media (max-width: 991px) {
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
  .hero-stats .stat-item {
    padding: 1.2rem;
    min-width: 100px;
  }
  .timeline-step .step-marker {
    width: 100px;
    height: 100px;
  }
  .timeline-step .step-icon {
    width: 80px;
    height: 80px;
  }
  .timeline-step .step-icon i {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-stats .stat-item {
    width: 100%;
    max-width: 200px;
    padding: 1rem;
  }
  .floating-elements {
    display: none;
  }
  .timeline-step .step-marker {
    width: 80px;
    height: 80px;
    margin: 0 0.5rem;
  }
  .timeline-step .step-icon {
    width: 60px;
    height: 60px;
  }
  .timeline-step .step-icon i {
    font-size: 1.5rem;
  }
  .timeline-step .step-content h4 {
    font-size: 1.1rem;
  }
  .timeline-step .step-content p {
    font-size: 0.85rem;
  }
  .interactive-card .card-hover-content {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    background: rgba(153, 25, 22, 0.1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    min-height: auto;
    padding: 1rem;
  }
  .interactive-card .card-hover-content li {
    opacity: 1;
    transform: none;
    color: #00040C;
  }
  .interactive-benefits .benefit-item .benefit-hover {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    background: rgba(225, 7, 18, 0.1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    box-shadow: none;
  }
  .interactive-benefits .benefit-item .benefit-hover p {
    color: #00040C;
  }
}
.mission-vision-section {
  position: relative;
  overflow: hidden;
}
.mission-vision-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(225, 7, 18, 0.08) 0%, rgba(153, 25, 22, 0.04) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  animation: float 5s ease-in-out infinite;
  z-index: 1;
}
.mission-vision-section::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(153, 25, 22, 0.06) 0%, rgba(225, 7, 18, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: float 6s ease-in-out infinite reverse;
  z-index: 1;
}
.mission-vision-section .container {
  position: relative;
  z-index: 2;
}
.mission-vision-section .mission-card,
.mission-vision-section .vision-card {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 2px solid rgba(225, 7, 18, 0.4) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}
.mission-vision-section .mission-card h3,
.mission-vision-section .vision-card h3 {
  color: #00040C !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}
.mission-vision-section .mission-card p,
.mission-vision-section .vision-card p {
  color: #00040C !important;
  font-weight: 500 !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9) !important;
}
.mission-vision-section .mission-card .card-icon,
.mission-vision-section .vision-card .card-icon {
  background: rgba(225, 7, 18, 0.2) !important;
  border: 2px solid rgba(225, 7, 18, 0.5) !important;
  box-shadow: 0 5px 15px rgba(225, 7, 18, 0.2) !important;
}

.values-grid .value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.values-grid .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.values-grid .value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 7, 18, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.values-grid .value-card:hover::before {
  opacity: 1;
}
.values-grid .value-card:hover .value-icon {
  border-color: #E10712;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.3) 0%, rgba(153, 25, 22, 0.2) 100%);
  transform: scale(1.1);
}
.values-grid .value-card:hover .value-icon i {
  color: #fff;
}
.values-grid .value-card .value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.2) 0%, rgba(153, 25, 22, 0.1) 100%);
  border: 2px solid rgba(225, 7, 18, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.values-grid .value-card .value-icon i {
  color: #E10712;
  font-size: 2.2rem;
  transition: all 0.4s ease;
}
.values-grid .value-card h4 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .values-grid .value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
}
.values-grid .value-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .values-grid .value-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .values-grid .value-card {
    padding: 2rem 1.5rem;
    min-height: 200px;
  }
  .values-grid .value-card .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .values-grid .value-card .value-icon i {
    font-size: 1.8rem;
  }
}

.page-hero-section .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  filter: drop-shadow(0 0 20px rgba(225, 7, 18, 0.3));
  transition: all 0.3s ease;
}
.page-hero-section .hero-image img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 30px rgba(225, 7, 18, 0.5));
}

.benefits-list .benefit-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
.benefits-list .benefit-item:hover {
  transform: translateX(10px);
}
.benefits-list .benefit-item:hover i {
  color: #E10712;
  transform: scale(1.2);
}
.benefits-list .benefit-item i {
  color: #E10712;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  min-width: 24px;
}
.benefits-list .benefit-item span {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .benefits-list .benefit-item span {
    font-size: 0.9rem;
  }
}

.final-cta {
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.3) 0%, rgba(153, 25, 22, 0.8) 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  border-radius: 2rem;
  animation: shimmer 3s ease-in-out infinite;
}
.final-cta .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .final-cta .cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.final-cta .cta-description {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .final-cta .cta-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.final-cta .cta-button {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .final-cta .cta-button {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .final-cta {
    padding: 2rem 1.5rem;
    margin: 3rem 0;
  }
}

@media (max-width: 991px) {
  .about-content .expertise-tags {
    justify-content: center;
  }
  .about-content .expertise-tags .expertise-tag {
    margin-bottom: 0.5rem;
  }
  .mission-card,
  .vision-card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .about-content .expertise-tags .expertise-tag {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  .values-grid .value-card {
    margin-bottom: 1.5rem;
  }
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(225, 7, 18, 0.2);
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-width: 120px;
  position: relative;
  overflow: hidden;
}
.hero-stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 7, 18, 0.1), transparent);
  transition: left 0.6s ease;
}
.hero-stats .stat-item:hover {
  transform: translateY(-5px);
  border-color: #E10712;
  box-shadow: 0 15px 35px rgba(225, 7, 18, 0.3);
}
.hero-stats .stat-item:hover::before {
  left: 100%;
}
.hero-stats .stat-item:hover .stat-number {
  color: #E10712;
  transform: scale(1.1);
}
.hero-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Avenir Next Cyr", sans-serif;
  transition: all 0.3s ease;
}
.hero-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .hero-stats .stat-item {
    padding: 1rem;
    min-width: 100px;
  }
  .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
  .hero-stats .stat-item .stat-label {
    font-size: 0.75rem;
  }
}
@media (max-width: 991px) {
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-stats .stat-item {
    width: 100%;
    max-width: 200px;
  }
}

.page-hero-section .floating-elements .floating-element {
  position: absolute;
  opacity: 0.8;
  transition: all 0.4s ease;
  z-index: 10;
}
.page-hero-section .floating-elements .floating-element:hover {
  opacity: 1;
  transform: scale(1.2) rotate(10deg);
}
.page-hero-section .floating-elements .floating-element .element-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.page-hero-section .floating-elements .floating-element .element-content i {
  font-size: 2rem;
  color: #E10712;
  filter: drop-shadow(0 0 15px rgba(225, 7, 18, 0.6));
  transition: all 0.3s ease;
}
.page-hero-section .floating-elements .floating-element.element-1 {
  top: 10%;
  left: 10%;
  width: 60px;
  height: 60px;
  animation: float-about-1 8s ease-in-out infinite;
}
@media (max-width: 767px) {
  .page-hero-section .floating-elements .floating-element.element-1 {
    width: 50px;
    height: 50px;
  }
}
.page-hero-section .floating-elements .floating-element.element-2 {
  top: 20%;
  right: 15%;
  width: 70px;
  height: 70px;
  animation: float-about-2 10s ease-in-out infinite;
}
@media (max-width: 767px) {
  .page-hero-section .floating-elements .floating-element.element-2 {
    width: 55px;
    height: 55px;
  }
}
.page-hero-section .floating-elements .floating-element.element-3 {
  top: 50%;
  left: 5%;
  width: 50px;
  height: 50px;
  animation: float-about-3 12s ease-in-out infinite;
}
@media (max-width: 767px) {
  .page-hero-section .floating-elements .floating-element.element-3 {
    width: 40px;
    height: 40px;
  }
}

@keyframes float-about-1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes float-about-2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(-5deg);
  }
}
@keyframes float-about-3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(10deg);
  }
}
.interactive-timeline {
  position: relative;
  padding: 2rem 0;
}
.interactive-timeline .timeline-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #E10712, #991916, #E10712);
  margin: 0 auto;
  display: block;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .interactive-timeline .timeline-progress {
    left: 30px;
    transform: none;
  }
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  z-index: 2;
}
.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-step:nth-child(even) .step-content {
  text-align: right;
}
@media (max-width: 767px) {
  .timeline-step:nth-child(even) .step-content {
    text-align: left;
  }
}
.timeline-step:nth-child(even) .step-details {
  right: 0;
  left: auto;
}
@media (max-width: 767px) {
  .timeline-step:nth-child(even) .step-details {
    right: auto;
    left: 0;
  }
}
.timeline-step:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .timeline-step {
    flex-direction: row !important;
    margin-bottom: 3rem;
  }
}

.step-marker {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 2rem;
}
@media (max-width: 767px) {
  .step-marker {
    width: 80px;
    height: 80px;
    margin: 0 1rem;
    flex-shrink: 0;
  }
}

.step-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(225, 7, 18, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.step-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step-icon i {
  font-size: 2.5rem;
  color: #E10712;
  transition: all 0.4s ease;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .step-icon {
    width: 60px;
    height: 60px;
  }
  .step-icon i {
    font-size: 1.8rem;
  }
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #E10712;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(225, 7, 18, 0.3);
}
@media (max-width: 767px) {
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
    top: -8px;
    right: -8px;
  }
}

.step-content {
  flex: 1;
  max-width: 400px;
  position: relative;
}
@media (max-width: 767px) {
  .step-content {
    max-width: none;
  }
}
.step-content h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
}
.step-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .step-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

.step-details {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 4, 12, 0.95);
  padding: 1.5rem;
  border-radius: 15px;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.3);
  z-index: 100;
}
@media (max-width: 767px) {
  .step-details {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    background: rgba(225, 7, 18, 0.1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.step-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-details ul li {
  color: #fff;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.step-details ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #E10712;
  font-weight: bold;
}
@media (max-width: 767px) {
  .step-details ul li {
    color: #00040C;
  }
}

.timeline-step:hover .step-details {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .timeline-step:hover .step-details {
    transform: none;
  }
}
.timeline-step:hover .step-icon {
  border-color: #E10712;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(225, 7, 18, 0.3);
}
.timeline-step:hover .step-icon::before {
  opacity: 1;
}
.timeline-step:hover .step-icon i {
  color: #fff;
  transform: scale(1.1);
}
.timeline-step:hover .step-number {
  background: linear-gradient(135deg, #E10712, #991916);
  color: #fff;
}

.interactive-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.interactive-card .card-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(153, 25, 22, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 10;
}
.interactive-card .card-hover-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.interactive-card .card-hover-content li {
  color: #fff;
  margin: 0.8rem 0;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.interactive-card .card-hover-content li:nth-child(1) {
  transition-delay: 0.1s;
}
.interactive-card .card-hover-content li:nth-child(2) {
  transition-delay: 0.2s;
}
.interactive-card .card-hover-content li:nth-child(3) {
  transition-delay: 0.3s;
}
.interactive-card .card-hover-content li:nth-child(4) {
  transition-delay: 0.4s;
}
.interactive-card .card-hover-content li:nth-child(5) {
  transition-delay: 0.5s;
}
.interactive-card:hover .card-hover-content {
  opacity: 1;
  transform: translateY(0);
}
.interactive-card:hover .card-hover-content li {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .interactive-card .card-hover-content {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    background: rgba(225, 7, 18, 0.1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    min-height: auto;
    padding: 1rem;
  }
  .interactive-card .card-hover-content li {
    opacity: 1;
    transform: none;
    color: #00040C;
  }
}

.interactive-benefits .benefit-item {
  position: relative;
  transition: all 0.3s ease;
  padding: 0.75rem 0;
}
.interactive-benefits .benefit-item:hover {
  transform: translateX(10px);
}
.interactive-benefits .benefit-item:hover .benefit-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(10px);
}
.interactive-benefits .benefit-item .benefit-hover {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 4, 12, 0.95);
  padding: 1.5rem;
  border-radius: 15px;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.3);
  z-index: 10;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.interactive-benefits .benefit-item .benefit-hover p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 991px) {
  .interactive-benefits .benefit-item .benefit-hover {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    background: rgba(225, 7, 18, 0.1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    box-shadow: none;
  }
  .interactive-benefits .benefit-item .benefit-hover p {
    color: #00040C;
  }
}

.team-stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
.team-stats-overlay .stat-bubble {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(225, 7, 18, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(225, 7, 18, 0.4);
  transition: all 0.3s ease;
}
.team-stats-overlay .stat-bubble:hover {
  transform: scale(1.1);
  background: rgba(225, 7, 18, 0.3);
  border-color: #E10712;
}
.team-stats-overlay .stat-bubble .stat-number {
  font-size: 1.2rem;
  font-weight: bold;
  color: #E10712;
  line-height: 1;
  font-family: "Avenir Next Cyr", sans-serif;
}
.team-stats-overlay .stat-bubble .stat-label {
  font-size: 0.7rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  margin-top: 0.2rem;
}
.team-stats-overlay .stat-bubble:nth-child(1) {
  top: 20%;
  left: 10%;
}
.team-stats-overlay .stat-bubble:nth-child(2) {
  top: 60%;
  right: 15%;
}
.team-stats-overlay .stat-bubble:nth-child(3) {
  bottom: 20%;
  left: 50%;
}
@media (max-width: 767px) {
  .team-stats-overlay .stat-bubble {
    width: 60px;
    height: 60px;
  }
  .team-stats-overlay .stat-bubble .stat-number {
    font-size: 1rem;
  }
  .team-stats-overlay .stat-bubble .stat-label {
    font-size: 0.6rem;
  }
}
@media (max-width: 767px) {
  .team-stats-overlay {
    display: none;
  }
}

.mission-vision-section {
  position: relative;
  overflow: hidden;
}
.mission-vision-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(225, 7, 18, 0.08) 0%, rgba(153, 25, 22, 0.04) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  animation: float 5s ease-in-out infinite;
  z-index: 1;
}
.mission-vision-section::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(153, 25, 22, 0.06) 0%, rgba(225, 7, 18, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: float 6s ease-in-out infinite reverse;
  z-index: 1;
}
.mission-vision-section .container {
  position: relative;
  z-index: 2;
}
.mission-vision-section .mission-card,
.mission-vision-section .vision-card {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 2px solid rgba(225, 7, 18, 0.4) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}
.mission-vision-section .mission-card h3,
.mission-vision-section .vision-card h3 {
  color: #00040C !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}
.mission-vision-section .mission-card p,
.mission-vision-section .vision-card p {
  color: #00040C !important;
  font-weight: 500 !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9) !important;
}
.mission-vision-section .mission-card .card-icon,
.mission-vision-section .vision-card .card-icon {
  background: rgba(225, 7, 18, 0.2) !important;
  border: 2px solid rgba(225, 7, 18, 0.5) !important;
  box-shadow: 0 5px 15px rgba(225, 7, 18, 0.2) !important;
}

.values-grid .value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.values-grid .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.values-grid .value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 7, 18, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.values-grid .value-card:hover::before {
  opacity: 1;
}
.values-grid .value-card:hover .value-icon {
  border-color: #E10712;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.3) 0%, rgba(153, 25, 22, 0.2) 100%);
  transform: scale(1.1);
}
.values-grid .value-card:hover .value-icon i {
  color: #fff;
}
.values-grid .value-card .value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.2) 0%, rgba(153, 25, 22, 0.1) 100%);
  border: 2px solid rgba(225, 7, 18, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.values-grid .value-card .value-icon i {
  color: #E10712;
  font-size: 2.2rem;
  transition: all 0.4s ease;
}
.values-grid .value-card h4 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .values-grid .value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
}
.values-grid .value-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .values-grid .value-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .values-grid .value-card {
    padding: 2rem 1.5rem;
    min-height: 200px;
  }
  .values-grid .value-card .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .values-grid .value-card .value-icon i {
    font-size: 1.8rem;
  }
}

.page-hero-section .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  filter: drop-shadow(0 0 20px rgba(225, 7, 18, 0.3));
  transition: all 0.3s ease;
}
.page-hero-section .hero-image img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 30px rgba(225, 7, 18, 0.5));
}

.benefits-list .benefit-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
.benefits-list .benefit-item:hover {
  transform: translateX(10px);
}
.benefits-list .benefit-item:hover i {
  color: #E10712;
  transform: scale(1.2);
}
.benefits-list .benefit-item i {
  color: #E10712;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  min-width: 24px;
}
.benefits-list .benefit-item span {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .benefits-list .benefit-item span {
    font-size: 0.9rem;
  }
}

.final-cta {
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.3) 0%, rgba(153, 25, 22, 0.8) 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  border-radius: 2rem;
  animation: shimmer 3s ease-in-out infinite;
}
.final-cta .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .final-cta .cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.final-cta .cta-description {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .final-cta .cta-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.final-cta .cta-button {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .final-cta .cta-button {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .final-cta {
    padding: 2rem 1.5rem;
    margin: 3rem 0;
  }
}

@media (max-width: 991px) {
  .about-content .expertise-tags {
    justify-content: center;
  }
  .about-content .expertise-tags .expertise-tag {
    margin-bottom: 0.5rem;
  }
  .mission-card,
  .vision-card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .about-content .expertise-tags .expertise-tag {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  .values-grid .value-card {
    margin-bottom: 1.5rem;
  }
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(225, 7, 18, 0.2);
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-width: 120px;
  position: relative;
  overflow: hidden;
}
.hero-stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 7, 18, 0.1), transparent);
  transition: left 0.6s ease;
}
.hero-stats .stat-item:hover {
  transform: translateY(-5px);
  border-color: #E10712;
  box-shadow: 0 15px 35px rgba(225, 7, 18, 0.3);
}
.hero-stats .stat-item:hover::before {
  left: 100%;
}
.hero-stats .stat-item:hover .stat-number {
  color: #E10712;
  transform: scale(1.1);
}
.hero-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Avenir Next Cyr", sans-serif;
  transition: all 0.3s ease;
}
.hero-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .hero-stats .stat-item {
    padding: 1rem;
    min-width: 100px;
  }
  .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
  .hero-stats .stat-item .stat-label {
    font-size: 0.75rem;
  }
}
@media (max-width: 991px) {
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-stats .stat-item {
    width: 100%;
    max-width: 200px;
  }
}

.page-hero-section .floating-elements .floating-element {
  position: absolute;
  opacity: 0.8;
  transition: all 0.4s ease;
  z-index: 10;
}
.page-hero-section .floating-elements .floating-element:hover {
  opacity: 1;
  transform: scale(1.2) rotate(10deg);
}
.page-hero-section .floating-elements .floating-element .element-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.page-hero-section .floating-elements .floating-element .element-content i {
  font-size: 2rem;
  color: #E10712;
  filter: drop-shadow(0 0 15px rgba(225, 7, 18, 0.6));
  transition: all 0.3s ease;
}
.page-hero-section .floating-elements .floating-element.element-1 {
  top: 10%;
  left: 10%;
  width: 60px;
  height: 60px;
  animation: float-about-1 8s ease-in-out infinite;
}
@media (max-width: 767px) {
  .page-hero-section .floating-elements .floating-element.element-1 {
    width: 50px;
    height: 50px;
  }
}
.page-hero-section .floating-elements .floating-element.element-2 {
  top: 20%;
  right: 15%;
  width: 70px;
  height: 70px;
  animation: float-about-2 10s ease-in-out infinite;
}
@media (max-width: 767px) {
  .page-hero-section .floating-elements .floating-element.element-2 {
    width: 55px;
    height: 55px;
  }
}
.page-hero-section .floating-elements .floating-element.element-3 {
  top: 50%;
  left: 5%;
  width: 50px;
  height: 50px;
  animation: float-about-3 12s ease-in-out infinite;
}
@media (max-width: 767px) {
  .page-hero-section .floating-elements .floating-element.element-3 {
    width: 40px;
    height: 40px;
  }
}

@keyframes float-about-1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes float-about-2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(-5deg);
  }
}
@keyframes float-about-3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(10deg);
  }
}
.interactive-timeline {
  position: relative;
  padding: 2rem 0;
}
.interactive-timeline .timeline-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #E10712, #991916, #E10712);
  margin: 0 auto;
  display: block;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .interactive-timeline .timeline-progress {
    left: 30px;
    transform: none;
  }
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  z-index: 2;
}
.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-step:nth-child(even) .step-content {
  text-align: right;
}
@media (max-width: 767px) {
  .timeline-step:nth-child(even) .step-content {
    text-align: left;
  }
}
.timeline-step:nth-child(even) .step-details {
  right: 0;
  left: auto;
}
@media (max-width: 767px) {
  .timeline-step:nth-child(even) .step-details {
    right: auto;
    left: 0;
  }
}
.timeline-step:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .timeline-step {
    flex-direction: row !important;
    margin-bottom: 3rem;
  }
}

.step-marker {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 2rem;
}
@media (max-width: 767px) {
  .step-marker {
    width: 80px;
    height: 80px;
    margin: 0 1rem;
    flex-shrink: 0;
  }
}

.step-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(225, 7, 18, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.step-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step-icon i {
  font-size: 2.5rem;
  color: #E10712;
  transition: all 0.4s ease;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .step-icon {
    width: 60px;
    height: 60px;
  }
  .step-icon i {
    font-size: 1.8rem;
  }
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #E10712;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(225, 7, 18, 0.3);
}
@media (max-width: 767px) {
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
    top: -8px;
    right: -8px;
  }
}

.step-content {
  flex: 1;
  max-width: 400px;
  position: relative;
}
@media (max-width: 767px) {
  .step-content {
    max-width: none;
  }
}
.step-content h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
}
.step-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .step-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

.step-details {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 4, 12, 0.95);
  padding: 1.5rem;
  border-radius: 15px;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 7, 18, 0.3);
  z-index: 100;
}
@media (max-width: 767px) {
  .step-details {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    background: rgba(225, 7, 18, 0.1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.step-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-details ul li {
  color: #fff;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.step-details ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #E10712;
  font-weight: bold;
}
@media (max-width: 767px) {
  .step-details ul li {
    color: #00040C;
  }
}

.timeline-step:hover .step-details {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .timeline-step:hover .step-details {
    transform: none;
  }
}
.timeline-step:hover .step-icon {
  border-color: #E10712;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(225, 7, 18, 0.3);
}
.timeline-step:hover .step-number {
  background: linear-gradient(135deg, #E10712, #991916);
  color: #fff;
}

@media (max-width: 991px) {
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
  .hero-stats .stat-item {
    padding: 1.2rem;
    min-width: 100px;
  }
  .timeline-step .step-marker {
    width: 100px;
    height: 100px;
  }
  .timeline-step .step-icon {
    width: 80px;
    height: 80px;
  }
  .timeline-step .step-icon i {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-stats .stat-item {
    width: 100%;
    max-width: 200px;
    padding: 1rem;
  }
  .floating-elements {
    display: none;
  }
  .timeline-step .step-marker {
    width: 80px;
    height: 80px;
    margin: 0 0.5rem;
  }
  .timeline-step .step-icon {
    width: 60px;
    height: 60px;
  }
  .timeline-step .step-icon i {
    font-size: 1.5rem;
  }
  .timeline-step .step-content h4 {
    font-size: 1.1rem;
  }
  .timeline-step .step-content p {
    font-size: 0.85rem;
  }
  .interactive-card .card-hover-content {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    background: rgba(225, 7, 18, 0.1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    min-height: auto;
    padding: 1rem;
  }
  .interactive-card .card-hover-content li {
    opacity: 1;
    transform: none;
    color: #00040C;
  }
  .interactive-benefits .benefit-item .benefit-hover {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    background: rgba(225, 7, 18, 0.1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    box-shadow: none;
  }
  .interactive-benefits .benefit-item .benefit-hover p {
    color: #00040C;
  }
}
.contact-hero {
  padding: 6rem 0;
}
.contact-hero .hero-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-hero .hero-cta-buttons .primary-cta {
  background: linear-gradient(135deg, #E10712, #991916);
  border: 2px solid #E10712;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-hero .hero-cta-buttons .primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(225, 7, 18, 0.4);
  color: #fff;
}
.contact-hero .hero-cta-buttons .primary-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.contact-hero .hero-cta-buttons .primary-cta:hover::before {
  left: 100%;
}
.contact-hero .hero-cta-buttons .secondary-cta {
  background: transparent;
  border: 2px solid #E10712;
  color: #E10712;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-hero .hero-cta-buttons .secondary-cta:hover {
  background: #E10712;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(225, 7, 18, 0.4);
}
.contact-hero .hero-cta-buttons .secondary-cta i {
  font-size: 1.2rem;
}
.contact-hero .hero-image {
  text-align: center;
}
.contact-hero .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(225, 7, 18, 0.2);
}

.chat-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.05), rgba(153, 25, 22, 0.05));
  position: relative;
  overflow: hidden;
}
.chat-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(225,7,18,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.chat-cta-section .chat-cta-container {
  position: relative;
  z-index: 2;
  background: rgba(24, 8, 14, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(225, 7, 18, 0.3);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(225, 7, 18, 0.1);
  transition: all 0.3s ease;
}
.chat-cta-section .chat-cta-container:hover {
  border-color: #E10712;
  box-shadow: 0 30px 80px rgba(225, 7, 18, 0.2);
  transform: translateY(-5px);
}
.chat-cta-section .chat-cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E10712, #991916);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.chat-cta-section .chat-cta-icon i {
  font-size: 2.5rem;
  color: #fff;
}
.chat-cta-section .chat-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #E10712, #991916);
  -webkit-background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.chat-cta-section .chat-cta-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #ccc;
}
.chat-cta-section .chat-cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.chat-cta-section .chat-cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #E10712;
  font-weight: 600;
}
.chat-cta-section .chat-cta-features .feature-item i {
  font-size: 1.2rem;
}
.chat-cta-section .chat-cta-button {
  background: linear-gradient(135deg, #E10712, #991916);
  border: none;
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 auto;
}
.chat-cta-section .chat-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(225, 7, 18, 0.4);
  color: #fff;
}
.chat-cta-section .chat-cta-button i {
  font-size: 1.3rem;
}

.contact-info-section {
  padding: 5rem 0;
}
.contact-info-section .contact-card {
  background: rgba(24, 8, 14, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(225, 7, 18, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.contact-info-section .contact-card:hover {
  border-color: #E10712;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(225, 7, 18, 0.2);
}
.contact-info-section .contact-card .contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E10712, #991916);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.contact-info-section .contact-card .contact-icon i {
  font-size: 2rem;
  color: #fff;
}
.contact-info-section .contact-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.contact-info-section .contact-card p {
  margin-bottom: 1.5rem;
  color: #ccc;
  line-height: 1.6;
}
.contact-info-section .contact-card .contact-link {
  color: #E10712;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.contact-info-section .contact-card .contact-link:hover {
  color: #991916;
  text-decoration: underline;
}

.why-choose-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.03), rgba(153, 25, 22, 0.03));
}
.why-choose-section .feature-card {
  background: rgba(24, 8, 14, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(225, 7, 18, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.why-choose-section .feature-card:hover {
  border-color: #E10712;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(225, 7, 18, 0.2);
}
.why-choose-section .feature-card .feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E10712, #991916);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.why-choose-section .feature-card .feature-icon i {
  font-size: 1.8rem;
  color: #fff;
}
.why-choose-section .feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}
.why-choose-section .feature-card p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1), rgba(153, 25, 22, 0.1));
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(225,7,18,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}
.final-cta .cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #E10712, #991916);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta .cta-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #ccc;
  line-height: 1.6;
}
.final-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.final-cta .cta-buttons .cta-button {
  background: linear-gradient(135deg, #E10712, #991916);
  border: none;
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.final-cta .cta-buttons .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(225, 7, 18, 0.4);
  color: #fff;
}
.final-cta .cta-buttons .cta-button.secondary {
  background: transparent;
  border: 2px solid #E10712;
  color: #E10712;
}
.final-cta .cta-buttons .cta-button.secondary:hover {
  background: #E10712;
  color: #fff;
}
.final-cta .cta-buttons .cta-button.chat {
  background: linear-gradient(135deg, #991916, #E10712);
}
.final-cta .cta-buttons .cta-button.chat:hover {
  box-shadow: 0 15px 40px rgba(153, 25, 22, 0.4);
}
.final-cta .cta-buttons .cta-button i {
  font-size: 1.3rem;
}

@media (max-width: 991px) {
  .contact-hero {
    padding: 4rem 0;
  }
  .contact-hero .hero-cta-buttons {
    justify-content: center;
  }
  .contact-hero .hero-cta-buttons .primary-cta,
  .contact-hero .hero-cta-buttons .secondary-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  .chat-cta-section {
    padding: 3rem 0;
  }
  .chat-cta-section .chat-cta-container {
    padding: 2rem;
  }
  .chat-cta-section .chat-cta-title {
    font-size: 2rem;
  }
  .chat-cta-section .chat-cta-features {
    gap: 1rem;
  }
  .chat-cta-section .chat-cta-features .feature-item {
    font-size: 0.9rem;
  }
  .contact-info-section,
  .why-choose-section,
  .final-cta {
    padding: 3rem 0;
  }
  .final-cta .cta-title {
    font-size: 2.2rem;
  }
  .final-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .final-cta .cta-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .contact-hero {
    padding: 3rem 0;
  }
  .contact-hero .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .contact-hero .hero-cta-buttons .primary-cta,
  .contact-hero .hero-cta-buttons .secondary-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .chat-cta-section .chat-cta-container {
    padding: 1.5rem;
  }
  .chat-cta-section .chat-cta-title {
    font-size: 1.8rem;
  }
  .chat-cta-section .chat-cta-features {
    flex-direction: column;
    gap: 0.8rem;
  }
  .contact-info-section .contact-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  .why-choose-section .feature-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .final-cta .cta-title {
    font-size: 1.8rem;
  }
  .final-cta .cta-description {
    font-size: 1rem;
  }
}
.trusted-tools {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-top: 1px solid #222;
  padding: 3rem 0;
  background-color: rgba(0, 4, 12, 0.5);
  position: relative;
  z-index: 1;
}
.trusted-tools img {
  transition: all 0.3s ease;
  transform: scale(1);
  height: 100px;
}
.trusted-tools img:hover {
  transform: scale(1.2);
}

.portfolio-header {
  display: flex;
  border-bottom: thin solid rgba(34, 34, 34, 0.08);
}
.portfolio-header img {
  display: block;
  height: 48px;
  width: -moz-fit-content;
  width: fit-content;
}
.portfolio-header .container {
  width: 100%;
}
.portfolio-header .container .row {
  width: 100%;
}
.portfolio-header .container .row .col-auto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.floating-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  z-index: 1000;
  animation: slideInUp 0.8s ease-out, pulse 2s ease-in-out 1s infinite;
  animation-play-state: paused, running;
  transform-origin: bottom right;
  transition: all 0.3s ease;
}
.floating-link:active {
  transform: scale(0.95);
}
.floating-link.scrolling-down {
  transform: translateY(100px);
  opacity: 0.3;
}
.floating-link:hover {
  transform: scale(1.05) translateY(-5px);
}
.floating-link:hover .msg {
  opacity: 1;
  transform: translateX(0) scale(1);
  visibility: visible;
}
.floating-link:hover .character {
  transform: scale(1.1);
}
.floating-link:hover .character::after {
  animation-duration: 2s;
  box-shadow: 0 0 25px #00ff88, 0 0 40px rgba(0, 255, 136, 0.8), 0 0 60px rgba(0, 255, 136, 0.6);
  border-width: 3px;
}
.floating-link:hover .character img {
  filter: drop-shadow(0 0 1.5rem rgba(229, 255, 0, 0.8));
}
.floating-link .msg {
  font-size: 14px;
  font-weight: 600;
  border: thin solid #444;
  background: #222;
  display: block;
  padding: 1rem;
  border-radius: 0.5rem;
  position: absolute;
  right: 120px;
  width: 163px;
  line-height: 1.5;
  opacity: 0;
  transform: translateX(20px) scale(0.8);
  visibility: hidden;
  transition: all 0.3s ease;
  animation: messageFloat 3s ease-in-out 2s infinite;
}
.floating-link .msg::after {
  content: "";
  height: 16px;
  width: 16px;
  border: thick solid #444;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  position: absolute;
  right: 118px;
  top: 25px;
  transition: all 0.3s ease;
}
.floating-link.first-time-visit {
  animation: slideInUp 0.8s ease-out, pulse 2s ease-in-out 1s infinite, firstTimeBounce 1s ease-in-out 1.5s;
}
.floating-link.first-time-visit .msg {
  animation: firstTimeMessagePop 0.6s ease-out 2s forwards, messageFloat 3s ease-in-out 4s infinite;
}
.floating-link.first-time-visit .character {
  animation: characterBounce 4s ease-in-out infinite, firstTimeCharacterGlow 2s ease-in-out 1s;
}
.floating-link .character {
  width: 100px;
  position: relative;
  transition: all 0.3s ease;
  animation: characterBounce 4s ease-in-out infinite;
}
.floating-link .character::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
  border-radius: 50%;
  content: "";
  border: 2px solid #00ff88;
  z-index: -1;
  box-shadow: 0 0 10px #00ff88, 0 0 20px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 255, 136, 0.3);
  animation: spin-circle 4s ease-in-out infinite;
  transition: all 0.3s ease;
}
.floating-link .character img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(0 0 1rem rgba(229, 255, 0, 0.5));
  transition: all 0.3s ease;
  animation: imageGlow 3s ease-in-out infinite;
}

@keyframes slideInUp {
  0% {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes messageFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes characterBounce {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-2px);
  }
  75% {
    transform: translateY(1px);
  }
}
@keyframes spin-circle {
  0% {
    border-color: #00ff88;
    box-shadow: 0 0 10px #00ff88, 0 0 20px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 255, 136, 0.3);
  }
  25% {
    border-color: #00d4ff;
    box-shadow: 0 0 15px #00d4ff, 0 0 25px rgba(0, 212, 255, 0.6), 0 0 35px rgba(0, 212, 255, 0.4);
  }
  50% {
    border-color: #ff6b00;
    box-shadow: 0 0 20px #ff6b00, 0 0 30px rgba(255, 107, 0, 0.7), 0 0 40px rgba(255, 107, 0, 0.5);
  }
  75% {
    border-color: #ff0080;
    box-shadow: 0 0 15px #ff0080, 0 0 25px rgba(255, 0, 128, 0.6), 0 0 35px rgba(255, 0, 128, 0.4);
  }
  100% {
    border-color: #00ff88;
    box-shadow: 0 0 10px #00ff88, 0 0 20px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 255, 136, 0.3);
  }
}
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 1rem #f00;
  }
  50% {
    box-shadow: 0 0 1.5rem #f00, 0 0 2rem rgba(255, 0, 0, 0.3);
  }
}
@keyframes imageGlow {
  0%, 100% {
    filter: drop-shadow(0 0 1rem rgba(229, 255, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 1.2rem rgba(229, 255, 0, 0.7));
  }
}
@keyframes firstTimeBounce {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.95);
  }
  75% {
    transform: scale(1.05);
  }
}
@keyframes firstTimeMessagePop {
  0% {
    opacity: 0;
    transform: translateX(20px) scale(0.8);
    visibility: hidden;
  }
  50% {
    opacity: 0.8;
    transform: translateX(10px) scale(0.9);
    visibility: visible;
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    visibility: visible;
  }
}
@keyframes firstTimeCharacterGlow {
  0% {
    filter: drop-shadow(0 0 1rem rgba(229, 255, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 2rem rgba(229, 255, 0, 0.9));
  }
  100% {
    filter: drop-shadow(0 0 1rem rgba(229, 255, 0, 0.5));
  }
}
.company-block {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.company-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #00040c, rgba(0, 4, 12, 0.1));
  transition: all 0.3s ease;
}
.company-block .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  width: 100%;
  padding: 1rem;
  z-index: 1;
  transition: all 0.3s ease;
}
.company-block .content .block-logo {
  height: 80px;
  display: block;
  margin: 0;
  transition: all 0.3s ease;
}
.company-block .content .block-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.company-block .content .block-title small {
  font-size: 14px;
  font-weight: 400;
}
.company-block .content .block-description {
  margin: 0;
  transition: all 0.3s ease;
  text-align: center;
}
.company-block .block-bg-img {
  display: block;
  position: relative;
  min-height: 350px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.company-block .block-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.company-block .block-cta {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: thin solid rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.company-block .block-cta:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}
.company-block:hover::after {
  background: linear-gradient(to top, #00040c, rgba(0, 4, 12, 0.5));
}
.company-block:hover .block-bg-img {
  transform: scale(1.1);
}
.company-block:hover .content {
  bottom: 0%;
}
.company-block:hover .content .block-title {
  opacity: 1;
}
.company-block:hover .content .block-description {
  opacity: 1;
}

.wwu-hero-section {
  background: radial-gradient(circle at top, rgb(156, 24, 22) 0%, rgb(33, 4, 4) 31%, rgb(0, 0, 0) 100%);
}

#whyJoinUs .item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 4, 12, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  min-height: 250px;
}
#whyJoinUs .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(80, 227, 194, 0.1) 50%, rgba(184, 233, 148, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
#whyJoinUs .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(74, 144, 226, 0.3);
}
#whyJoinUs .item:hover::before {
  opacity: 1;
}
#whyJoinUs .item .item-number {
  background: linear-gradient(135deg, #E10712, #991916);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
  position: relative;
}
#whyJoinUs .item h3 {
  color: #00040C;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 1rem;
  z-index: 2;
  position: relative;
}
#whyJoinUs .item p {
  color: #00040C;
  line-height: 1.6;
  margin: 0;
  z-index: 2;
  position: relative;
}
#whyJoinUs .owl-nav {
  top: unset;
}
#whyJoinUs .owl-nav .owl-prev,
#whyJoinUs .owl-nav .owl-next {
  background: rgba(225, 7, 18, 0.1) !important;
  border: 1px solid rgba(225, 7, 18, 0.3) !important;
  color: #E10712 !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#whyJoinUs .owl-nav .owl-prev:hover,
#whyJoinUs .owl-nav .owl-next:hover {
  background: rgba(225, 7, 18, 0.2) !important;
  transform: scale(1.1);
}
#whyJoinUs .owl-dots {
  bottom: unset;
  margin-top: 16px;
}
#whyJoinUs .owl-dots .owl-dot span {
  background: rgba(225, 7, 18, 0.3) !important;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#whyJoinUs .owl-dots .owl-dot.active span {
  background: #4a90e2 !important;
  transform: scale(1.2);
}

.philosophy-block {
  background: #991916;
  height: 100%;
  padding: 1.5rem;
  border: thin solid rgba(153, 25, 22, 0.21);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.philosophy-block i {
  font-size: 2.5rem;
  color: #fff;
  transition: color 0.3s ease;
  height: 72px;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: thin solid rgba(255, 255, 255, 0.21);
}
.philosophy-block .block-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.philosophy-block .block-description {
  margin: 0;
}
.philosophy-block:hover {
  background: #fff;
  border-color: rgba(153, 25, 22, 0.25);
  transform: scale(1.05);
}
.philosophy-block:hover i {
  color: #991916;
  background: rgba(153, 25, 22, 0.1);
  border: thin solid rgba(153, 25, 22, 0.21);
}
.philosophy-block:hover .block-title {
  color: #991916;
}
.philosophy-block:hover .block-description {
  color: #991916;
}

.why-join-us-section {
  overflow: hidden;
}
.why-join-us-section .owl-stage-outer {
  overflow: visible;
}

.career-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(0, 4, 12, 0.9) 100%);
  position: relative;
  overflow: hidden;
}
.career-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/hero-pattern.svg") no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}
.career-hero .container {
  position: relative;
  z-index: 2;
}
.career-hero .section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #E10712 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.career-hero .section-title span {
  position: relative;
}
.career-hero .section-title span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E10712, #ff6b6b);
  border-radius: 2px;
}
.career-hero .subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 2rem;
}
.career-hero .career-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.career-hero .career-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.career-hero .career-stats .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #E10712;
}
.career-hero .career-stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #E10712;
  margin-bottom: 0.5rem;
}
.career-hero .career-stats .stat-item p {
  color: #ccc;
  margin: 0;
  font-weight: 500;
}
.career-hero .hero-image {
  position: relative;
  text-align: center;
}
.career-hero .hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(225, 7, 18, 0.3));
  animation: float 3s ease-in-out infinite;
}

.job-filter-section {
  padding: 60px 0;
  background: rgba(0, 4, 12, 0.8);
  position: relative;
}
.job-filter-section .filter-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.job-filter-section .filter-container .filter-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}
.job-filter-section .filter-container .filter-form .search-box {
  position: relative;
  margin-bottom: 2rem;
}
.job-filter-section .filter-container .filter-form .search-box input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.job-filter-section .filter-container .filter-form .search-box input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.job-filter-section .filter-container .filter-form .search-box input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.job-filter-section .filter-container .filter-form .search-box input:focus {
  outline: none;
  border-color: #E10712;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(225, 7, 18, 0.3);
}
.job-filter-section .filter-container .filter-form .search-box i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #E10712;
  font-size: 1.2rem;
}
.job-filter-section .filter-container .filter-form .filter-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.job-filter-section .filter-container .filter-form .filter-controls .filter-group label {
  display: block;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.job-filter-section .filter-container .filter-form .filter-controls .filter-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.job-filter-section .filter-container .filter-form .filter-controls .filter-group select:focus {
  outline: none;
  border-color: #E10712;
  background: rgba(255, 255, 255, 0.15);
}
.job-filter-section .filter-container .filter-form .filter-controls .filter-group select option {
  background: #00040C;
  color: #fff;
}
.job-filter-section .filter-container .filter-form .clear-filters-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.job-filter-section .filter-container .filter-form .clear-filters-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #E10712;
  color: #E10712;
}
.job-filter-section .filter-container .filter-form .clear-filters-btn i {
  margin-right: 0.5rem;
}

.job-list-section {
  padding: 80px 0;
  background: #00040C;
}
.job-list-section .job-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.job-list-section .job-list-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.job-list-section .job-list-header .section-title span {
  position: relative;
}
.job-list-section .job-list-header .section-title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #E10712, #ff6b6b);
  border-radius: 2px;
}
.job-list-section .job-list-header .job-count span {
  background: rgba(225, 7, 18, 0.2);
  color: #E10712;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid rgba(225, 7, 18, 0.3);
}
.job-list-section .job-list {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
.job-list-section .job-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.job-list-section .job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 7, 18, 0.1), transparent);
  transition: left 0.5s ease;
}
.job-list-section .job-card:hover {
  transform: translateY(-5px);
  border-color: #E10712;
  box-shadow: 0 20px 40px rgba(225, 7, 18, 0.2);
}
.job-list-section .job-card:hover::before {
  left: 100%;
}
.job-list-section .job-card .job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.job-list-section .job-card .job-card-header .job-title-section {
  flex: 1;
}
.job-list-section .job-card .job-card-header .job-title-section .job-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}
.job-list-section .job-card .job-card-header .job-title-section .job-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.job-list-section .job-card .job-card-header .job-title-section .job-meta span {
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.job-list-section .job-card .job-card-header .job-salary {
  font-size: 1.2rem;
  font-weight: 700;
  color: #E10712;
  text-align: right;
}
.job-list-section .job-card .job-description {
  margin-bottom: 1.5rem;
}
.job-list-section .job-card .job-description p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}
.job-list-section .job-card .job-requirements {
  margin-bottom: 1.5rem;
}
.job-list-section .job-card .job-requirements h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.job-list-section .job-card .job-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-list-section .job-card .job-requirements ul li {
  color: #ccc;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.job-list-section .job-card .job-requirements ul li::before {
  content: "•";
  color: #E10712;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.job-list-section .job-card .job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.job-list-section .job-card .job-card-footer .job-meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.job-list-section .job-card .job-card-footer .job-meta-info .job-posted {
  color: #ccc;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.job-list-section .job-card .job-card-footer .job-meta-info .job-posted i {
  color: #E10712;
}
.job-list-section .job-card .job-card-footer .job-meta-info .job-deadline {
  color: #ff6b6b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.job-list-section .job-card .job-card-footer .job-meta-info .job-deadline i {
  color: #ff6b6b;
}
.job-list-section .job-card .job-card-footer .job-meta-info .job-status .status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.job-list-section .job-card .job-card-footer .job-meta-info .job-status .status-badge.status-open {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.3);
}
.job-list-section .job-card .job-card-footer .job-meta-info .job-status .status-badge.status-paused {
  background: rgba(255, 165, 0, 0.2);
  color: #ffa500;
  border: 1px solid rgba(255, 165, 0, 0.3);
}
.job-list-section .job-card .job-card-footer .job-meta-info .job-status .status-badge.status-closed {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.3);
}
.job-list-section .job-card .job-card-footer .job-actions {
  display: flex;
  gap: 1rem;
}
.job-list-section .job-card .job-card-footer .job-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.job-list-section .job-card .job-card-footer .job-actions .btn.btn-outline-primary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.job-list-section .job-card .job-card-footer .job-actions .btn.btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #E10712;
  color: #E10712;
}
.job-list-section .job-card .job-card-footer .job-actions .btn.btn-primary {
  background: linear-gradient(135deg, #E10712, #ff6b6b);
  color: white;
  border: 2px solid transparent;
}
.job-list-section .job-card .job-card-footer .job-actions .btn.btn-primary:hover {
  background: linear-gradient(135deg, #c5060f, #e55a5a);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(225, 7, 18, 0.3);
}
.job-list-section .job-card .job-card-footer .job-actions .btn i {
  margin-right: 0.5rem;
}
.job-list-section .no-jobs-found {
  text-align: center;
  padding: 4rem 2rem;
  color: #ccc;
}
.job-list-section .no-jobs-found i {
  font-size: 4rem;
  color: #E10712;
  margin-bottom: 1rem;
}
.job-list-section .no-jobs-found h4 {
  color: #fff;
  margin-bottom: 1rem;
}
.job-list-section .loading-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #ccc;
}
.job-list-section .loading-state .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #E10712;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}
.job-list-section .loading-state p {
  color: #fff;
  font-size: 1.1rem;
}
.job-list-section .error-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #ccc;
}
.job-list-section .error-state i {
  font-size: 4rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
}
.job-list-section .error-state h4 {
  color: #fff;
  margin-bottom: 1rem;
}
.job-list-section .error-state p {
  margin-bottom: 2rem;
}
.job-list-section .error-state .btn {
  background: linear-gradient(135deg, #E10712, #ff6b6b);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.job-list-section .error-state .btn:hover {
  background: linear-gradient(135deg, #c5060f, #e55a5a);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(225, 7, 18, 0.3);
}
.job-list-section .pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.job-list-section .pagination-container .pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-list-section .pagination-container .pagination .page-item .page-link {
  display: block;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.job-list-section .pagination-container .pagination .page-item .page-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #E10712;
  color: #E10712;
}
.job-list-section .pagination-container .pagination .page-item.active .page-link {
  background: #E10712;
  border-color: #E10712;
  color: white;
}
.job-list-section .pagination-container .pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.why-join-section {
  padding: 80px 0;
}
.why-join-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}
.why-join-section .section-title span {
  position: relative;
}
.why-join-section .section-title span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #E10712, #ff6b6b);
  border-radius: 2px;
}
.why-join-section .benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.why-join-section .benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 7, 18, 0.1), transparent);
  transition: left 0.5s ease;
}
.why-join-section .benefit-card:hover {
  transform: translateY(-10px);
  border-color: #E10712;
  box-shadow: 0 20px 40px rgba(225, 7, 18, 0.2);
}
.why-join-section .benefit-card:hover::before {
  left: 100%;
}
.why-join-section .benefit-card .benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E10712, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}
.why-join-section .benefit-card .benefit-icon i {
  font-size: 2rem;
  color: white;
}
.why-join-section .benefit-card h4 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.why-join-section .benefit-card p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.modal-content {
  background: #18080e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.modal-content .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
}
.modal-content .modal-header .modal-title {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}
.modal-content .modal-header .btn-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.modal-content .modal-header .btn-close:hover {
  opacity: 1;
  color: #E10712;
}
.modal-content .modal-body {
  padding: 2rem;
  color: #ccc;
}
.modal-content .modal-body .job-details .job-details-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-content .modal-body .job-details .job-details-header .job-meta-info {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.modal-content .modal-body .job-details .job-details-header .job-meta-info .badge {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modal-content .modal-body .job-details .job-details-header .job-meta-info .badge.badge-department {
  background: rgba(225, 7, 18, 0.2);
  color: #E10712;
  border: 1px solid rgba(225, 7, 18, 0.3);
}
.modal-content .modal-body .job-details .job-details-header .job-meta-info .badge.badge-location {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.modal-content .modal-body .job-details .job-details-header .job-meta-info .badge.badge-type {
  background: rgba(0, 255, 255, 0.2);
  color: #00ffff;
  border: 1px solid rgba(0, 255, 255, 0.3);
}
.modal-content .modal-body .job-details .job-details-header .job-meta-info .badge.badge-experience {
  background: rgba(255, 165, 0, 0.2);
  color: #ffa500;
  border: 1px solid rgba(255, 165, 0, 0.3);
}
.modal-content .modal-body .job-details .job-details-header .job-meta-info .badge.badge-status.status-open {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.3);
}
.modal-content .modal-body .job-details .job-details-header .job-meta-info .badge.badge-status.status-paused {
  background: rgba(255, 165, 0, 0.2);
  color: #ffa500;
  border: 1px solid rgba(255, 165, 0, 0.3);
}
.modal-content .modal-body .job-details .job-details-header .job-meta-info .badge.badge-status.status-closed {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.3);
}
.modal-content .modal-body .job-details .job-details-header .job-salary-large {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E10712;
}
.modal-content .modal-body .job-details .job-description-full,
.modal-content .modal-body .job-details .job-requirements-full,
.modal-content .modal-body .job-details .job-responsibilities,
.modal-content .modal-body .job-details .job-benefits {
  margin-bottom: 2rem;
}
.modal-content .modal-body .job-details .job-description-full h5,
.modal-content .modal-body .job-details .job-requirements-full h5,
.modal-content .modal-body .job-details .job-responsibilities h5,
.modal-content .modal-body .job-details .job-benefits h5 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.modal-content .modal-body .job-details .job-description-full p,
.modal-content .modal-body .job-details .job-requirements-full p,
.modal-content .modal-body .job-details .job-responsibilities p,
.modal-content .modal-body .job-details .job-benefits p {
  color: #ccc;
  line-height: 1.6;
}
.modal-content .modal-body .job-details .job-description-full ul,
.modal-content .modal-body .job-details .job-requirements-full ul,
.modal-content .modal-body .job-details .job-responsibilities ul,
.modal-content .modal-body .job-details .job-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-content .modal-body .job-details .job-description-full ul li,
.modal-content .modal-body .job-details .job-requirements-full ul li,
.modal-content .modal-body .job-details .job-responsibilities ul li,
.modal-content .modal-body .job-details .job-benefits ul li {
  color: #ccc;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.modal-content .modal-body .job-details .job-description-full ul li::before,
.modal-content .modal-body .job-details .job-requirements-full ul li::before,
.modal-content .modal-body .job-details .job-responsibilities ul li::before,
.modal-content .modal-body .job-details .job-benefits ul li::before {
  content: "•";
  color: #E10712;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.modal-content .modal-body .job-details .job-posted-info {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-content .modal-body .job-details .job-posted-info .job-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.modal-content .modal-body .job-details .job-posted-info .job-timeline small {
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-content .modal-body .job-details .job-posted-info .job-timeline small i {
  color: #E10712;
}
.modal-content .modal-body .job-details .job-posted-info .job-timeline small.deadline-info {
  color: #ff6b6b;
}
.modal-content .modal-body .job-details .job-posted-info .job-timeline small.deadline-info i {
  color: #ff6b6b;
}
.modal-content .modal-body .form-label {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.modal-content .modal-body .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
.modal-content .modal-body .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modal-content .modal-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modal-content .modal-body .form-control:focus {
  outline: none;
  border-color: #E10712;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(225, 7, 18, 0.3);
}
.modal-content .modal-body .form-control option {
  background: #00040C;
  color: #fff;
}
.modal-content .modal-body .form-text {
  color: #ccc;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.modal-content .modal-body .form-check .form-check-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.modal-content .modal-body .form-check .form-check-input:checked {
  background-color: #E10712;
  border-color: #E10712;
}
.modal-content .modal-body .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 7, 18, 0.25);
}
.modal-content .modal-body .form-check .form-check-label {
  color: #ccc;
  margin-left: 0.5rem;
}
.modal-content .modal-body .form-check .form-check-label a {
  color: #E10712;
  text-decoration: none;
}
.modal-content .modal-body .form-check .form-check-label a:hover {
  text-decoration: underline;
}
.modal-content .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
}
.modal-content .modal-footer .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.modal-content .modal-footer .btn.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.modal-content .modal-footer .btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
.modal-content .modal-footer .btn.btn-primary {
  background: linear-gradient(135deg, #E10712, #ff6b6b);
  color: white;
  border: 2px solid transparent;
}
.modal-content .modal-footer .btn.btn-primary:hover {
  background: linear-gradient(135deg, #c5060f, #e55a5a);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(225, 7, 18, 0.3);
}

@media (max-width: 768px) {
  .career-hero {
    padding: 60px 0;
  }
  .career-hero .section-title {
    font-size: 2rem;
  }
  .career-hero .career-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .career-hero .career-stats .stat-item {
    padding: 1rem;
  }
  .career-hero .career-stats .stat-item h3 {
    font-size: 2rem;
  }
  .job-filter-section .filter-container {
    padding: 1.5rem;
  }
  .job-filter-section .filter-container .filter-form .filter-controls {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .job-list-section .job-list-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .job-list-section .job-list-header .section-title {
    font-size: 2rem;
  }
  .job-list-section .job-card {
    padding: 1.5rem;
  }
  .job-list-section .job-card .job-card-header {
    flex-direction: column;
    gap: 1rem;
  }
  .job-list-section .job-card .job-card-header .job-salary {
    text-align: left;
  }
  .job-list-section .job-card .job-card-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .job-list-section .job-card .job-card-footer .job-actions {
    justify-content: center;
  }
  .why-join-section .section-title {
    font-size: 2rem;
  }
  .modal-content .modal-body {
    padding: 1.5rem;
  }
  .modal-content .modal-body .job-details .job-details-header {
    flex-direction: column;
    gap: 1rem;
  }
  .modal-content .modal-body .job-details .job-details-header .job-salary-large {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .career-hero .career-stats .stat-item h3 {
    font-size: 1.5rem;
  }
  .job-card .job-card-footer .job-actions {
    flex-direction: column;
    width: 100%;
  }
  .job-card .job-card-footer .job-actions .btn {
    width: 100%;
  }
}
.service-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.service-page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.service-page-loader .loader-content {
  text-align: center;
  position: relative;
}
.service-page-loader .loader-content .character-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  position: relative;
  animation: characterFloat 3s ease-in-out infinite;
}
.service-page-loader .loader-content .character-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}
.service-page-loader .loader-content .character-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
  border-radius: 50%;
  z-index: -1;
  animation: rotate 2s linear infinite;
  opacity: 0.3;
}
.service-page-loader .loader-content .character-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  animation: textGlow 2s ease-in-out infinite alternate;
}
.service-page-loader .loader-content .service-title {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 2rem;
  opacity: 0.8;
}
.service-page-loader .loader-content .loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 255, 255, 0.2);
  border-top: 3px solid #00ffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}
.service-page-loader .loader-content .loading-text {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  opacity: 0.7;
  animation: pulse 1.5s ease-in-out infinite;
}
.service-page-loader .loader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.service-page-loader .loader-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  animation: particleFloat 4s linear infinite;
  opacity: 0.6;
}
.service-page-loader .loader-particles .particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.service-page-loader .loader-particles .particle:nth-child(2) {
  left: 20%;
  animation-delay: 0.5s;
}
.service-page-loader .loader-particles .particle:nth-child(3) {
  left: 30%;
  animation-delay: 1s;
}
.service-page-loader .loader-particles .particle:nth-child(4) {
  left: 40%;
  animation-delay: 1.5s;
}
.service-page-loader .loader-particles .particle:nth-child(5) {
  left: 50%;
  animation-delay: 2s;
}
.service-page-loader .loader-particles .particle:nth-child(6) {
  left: 60%;
  animation-delay: 2.5s;
}
.service-page-loader .loader-particles .particle:nth-child(7) {
  left: 70%;
  animation-delay: 3s;
}
.service-page-loader .loader-particles .particle:nth-child(8) {
  left: 80%;
  animation-delay: 3.5s;
}
.service-page-loader .loader-particles .particle:nth-child(9) {
  left: 90%;
  animation-delay: 4s;
}

.service-page-loader[data-character=originator] .character-image::before {
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd23f, #ff6b35);
}
.service-page-loader[data-character=originator] .character-name {
  color: #ff6b35;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}
.service-page-loader[data-character=originator] .loading-spinner {
  border-top-color: #ff6b35;
}

.service-page-loader[data-character=trendranger] .character-image::before {
  background: linear-gradient(45deg, #e91e63, #9c27b0, #673ab7, #e91e63);
}
.service-page-loader[data-character=trendranger] .character-name {
  color: #e91e63;
  text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}
.service-page-loader[data-character=trendranger] .loading-spinner {
  border-top-color: #e91e63;
}

.service-page-loader[data-character=code-panther] .character-image::before {
  background: linear-gradient(45deg, #00bcd4, #0097a7, #006064, #00bcd4);
}
.service-page-loader[data-character=code-panther] .character-name {
  color: #00bcd4;
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}
.service-page-loader[data-character=code-panther] .loading-spinner {
  border-top-color: #00bcd4;
}

.service-page-loader[data-character=connector] .character-image::before {
  background: linear-gradient(45deg, #4caf50, #8bc34a, #cddc39, #4caf50);
}
.service-page-loader[data-character=connector] .character-name {
  color: #4caf50;
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}
.service-page-loader[data-character=connector] .loading-spinner {
  border-top-color: #4caf50;
}

.service-page-loader[data-character=tale-rox] .character-image::before {
  background: linear-gradient(45deg, #ff9800, #ff5722, #f44336, #ff9800);
}
.service-page-loader[data-character=tale-rox] .character-name {
  color: #ff9800;
  text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}
.service-page-loader[data-character=tale-rox] .loading-spinner {
  border-top-color: #ff9800;
}

.service-page-loader[data-character=crawler] .character-image::before {
  background: linear-gradient(45deg, #795548, #5d4037, #3e2723, #795548);
}
.service-page-loader[data-character=crawler] .character-name {
  color: #795548;
  text-shadow: 0 0 10px rgba(121, 85, 72, 0.5);
}
.service-page-loader[data-character=crawler] .loading-spinner {
  border-top-color: #795548;
}

.service-page-loader[data-character=advenger] .character-image::before {
  background: linear-gradient(45deg, #ffc107, #ff9800, #ff5722, #ffc107);
}
.service-page-loader[data-character=advenger] .character-name {
  color: #ffc107;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}
.service-page-loader[data-character=advenger] .loading-spinner {
  border-top-color: #ffc107;
}

.service-page-loader[data-character=brand-vault] .character-image::before {
  background: linear-gradient(45deg, #9c27b0, #673ab7, #3f51b5, #9c27b0);
}
.service-page-loader[data-character=brand-vault] .character-name {
  color: #9c27b0;
  text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
}
.service-page-loader[data-character=brand-vault] .loading-spinner {
  border-top-color: #9c27b0;
}

@keyframes characterFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.3);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .service-page-loader .loader-content .character-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }
  .service-page-loader .loader-content .character-name {
    font-size: 1.2rem;
  }
  .service-page-loader .loader-content .service-title {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .service-page-loader .loader-content .loading-spinner {
    width: 40px;
    height: 40px;
  }
}
.characters {
  position: relative;
  min-height: 500px;
  z-index: 3;
}
.characters .c-row {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.front-row {
  position: relative;
  margin-top: -30%;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.front-row img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 2rem rgba(153, 25, 22, 0.8));
  transform: scale(1);
  position: relative;
  transition: all 0.3s ease;
  transform-origin: bottom;
  cursor: pointer;
}
.front-row img:nth-child(1) {
  height: 350px;
  z-index: 1;
  transform: translateX(100px) translateY(10px);
}
.front-row img:nth-child(2) {
  height: 280px;
  z-index: 1;
  transform: translateY(-8px) translateX(55px);
}
.front-row img:nth-child(3) {
  height: 200px;
  z-index: 1;
  transform: translateY(20px);
}
.front-row img:nth-child(4) {
  height: 290px;
  z-index: 1;
}
.front-row img:nth-child(5) {
  height: 230px;
  z-index: 2;
  transform: translateY(20px);
}
.front-row img:nth-child(6) {
  height: 320px;
  transform: translateX(-70px) translateY(-16px);
  z-index: 1;
}
.front-row img:nth-child(7) {
  height: 250px;
  z-index: 1;
  transform: translate(-180px, 10px);
}

.top-row img {
  height: auto;
  margin: 0 auto;
  height: 600px;
  width: auto !important;
  transform: translateX(-24px);
  cursor: pointer;
}

.ta-characters-section {
  position: relative;
  overflow: hiddne;
}
.ta-characters-section::before {
  content: "";
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ta-characters-section .section-title {
  z-index: 2;
  position: relative;
  margin-bottom: 50px;
}

.ta-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    /* Optional: spin the whole burst slowly */
    animation: burst-spin 60s infinite linear;
}

.ta-effects .particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px; /* Base width */
    height: 60vmax; /* Long rays to cover screen */
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.8) 0%, rgba(225, 7, 18, 0.4) 40%, transparent 100%);
    opacity: 0; 
    transform-origin: top center;
    border-radius: 0 0 100% 100%;
    filter: blur(2px);
    box-shadow: 0 0 10px rgba(225, 7, 18, 0.5);
    /* Animation for pulsing/flickering */
    animation: ray-pulse 4s infinite ease-in-out alternate;
}

/* Distribute rays around the center (360 / 15 = ~24 deg, but random is better) */
.ta-effects .particle:nth-child(1) { transform: rotate(0deg); animation-delay: 0s; width: 6px; }
.ta-effects .particle:nth-child(2) { transform: rotate(24deg); animation-delay: 1s; height: 50vmax; opacity: 0.5; }
.ta-effects .particle:nth-child(3) { transform: rotate(48deg); animation-delay: 2s; width: 2px; }
.ta-effects .particle:nth-child(4) { transform: rotate(72deg); animation-delay: 0.5s; height: 70vmax; }
.ta-effects .particle:nth-child(5) { transform: rotate(96deg); animation-delay: 3s; width: 5px; }
.ta-effects .particle:nth-child(6) { transform: rotate(120deg); animation-delay: 1.5s; }
.ta-effects .particle:nth-child(7) { transform: rotate(144deg); animation-delay: 4s; height: 55vmax; }
.ta-effects .particle:nth-child(8) { transform: rotate(168deg); animation-delay: 2.5s; width: 3px; }
.ta-effects .particle:nth-child(9) { transform: rotate(192deg); animation-delay: 0.8s; }
.ta-effects .particle:nth-child(10) { transform: rotate(216deg); animation-delay: 3.5s; height: 65vmax; }
.ta-effects .particle:nth-child(11) { transform: rotate(240deg); animation-delay: 1.2s; width: 7px; }
.ta-effects .particle:nth-child(12) { transform: rotate(264deg); animation-delay: 4.5s; }
.ta-effects .particle:nth-child(13) { transform: rotate(288deg); animation-delay: 2.2s; height: 45vmax; }
.ta-effects .particle:nth-child(14) { transform: rotate(312deg); animation-delay: 0.3s; width: 4px; }
.ta-effects .particle:nth-child(15) { transform: rotate(336deg); animation-delay: 3.8s; }

@keyframes ray-pulse {
    0% {
        opacity: 0.3;
        transform: rotate(var(--r, 0deg)) scaleY(0.9);
    }
    100% {
        opacity: 0.8;
        transform: rotate(var(--r, 0deg)) scaleY(1.1);
    }
}

/* We need to pass the rotation to the animation keyframes to keep position, 
   but simplistic way is to just animate opacity/scaleY without overwriting rotate.
   The issue is 'transform' in keyframe overwrites the inline/nth-child transform.
   
   Better approach: Wrapper or simply animate opacity and length (height).
   Or use separate property like 'scale' if supported independently, or use 'opacity' only.
   Let's stick to simple Opacity pulsing which fits "flares".
*/

@keyframes ray-pulse {
    0% { opacity: 0.2; }
    50% { opacity: 0.6; }
    100% { opacity: 0.9; }
}

@keyframes burst-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



small {
  font-weight: 100;
}

.image-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 240px;
}
.image-mosaic .img-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #353535;
  font-size: 3rem;
  color: #fff;
  box-shadow: rgba(3, 8, 20, 0.1) 0px 0.15rem 0.5rem, rgba(2, 8, 20, 0.1) 0px 0.075rem 0.175rem;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  transition: all 500ms;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 600px) {
  .card-tall {
    grid-row: span 2/auto;
  }
  .card-wide {
    grid-column: span 2/auto;
  }
}
.youtube-carousel-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.youtube-carousel-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}
.youtube-carousel-section .section-title {
  color: white;
  position: relative;
  z-index: 2;
}
.youtube-carousel-section .section-title span {
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.youtube-carousel-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.youtube-story-carousel .story-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 0 15px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.youtube-story-carousel .story-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.youtube-story-carousel .video-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #000;
}
.youtube-story-carousel .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.youtube-story-carousel .video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  z-index: 1;
  pointer-events: none;
}
.youtube-story-carousel .story-content {
  padding: 25px;
  text-align: center;
}
.youtube-story-carousel .story-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.youtube-story-carousel .story-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}
.youtube-story-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 3;
}
.youtube-story-carousel .owl-nav .owl-prev,
.youtube-story-carousel .owl-nav .owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #667eea;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.youtube-story-carousel .owl-nav .owl-prev:hover,
.youtube-story-carousel .owl-nav .owl-next:hover {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}
.youtube-story-carousel .owl-nav .owl-prev {
  left: -25px;
}
.youtube-story-carousel .owl-nav .owl-next {
  right: -25px;
}
.youtube-story-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}
.youtube-story-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  transition: all 0.3s ease;
}
.youtube-story-carousel .owl-dots .owl-dot.active {
  background: white;
  transform: scale(1.2);
}
.youtube-story-carousel .owl-dots .owl-dot:hover {
  background: white;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .youtube-carousel-section {
    padding: 60px 0;
  }
  .youtube-story-carousel .story-item {
    margin: 0 10px;
  }
  .youtube-story-carousel .video-container {
    height: 200px;
  }
  .youtube-story-carousel .story-content {
    padding: 20px;
  }
  .youtube-story-carousel .story-content h3 {
    font-size: 1.2rem;
  }
  .youtube-story-carousel .story-content p {
    font-size: 0.9rem;
  }
  .youtube-story-carousel .owl-nav .owl-prev,
  .youtube-story-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .youtube-story-carousel .owl-nav .owl-prev {
    left: -20px;
  }
  .youtube-story-carousel .owl-nav .owl-next {
    right: -20px;
  }
}
@media (max-width: 480px) {
  .youtube-story-carousel .owl-nav {
    display: none;
  }
}
.tech-shield-gpt-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.tech-shield-gpt-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(225, 7, 18, 0.15) 0%, rgba(153, 25, 22, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
}
.tech-shield-gpt-section > * {
  position: relative;
  z-index: 1;
}
.tech-shield-gpt-section .tech-shield-content {
  padding: 2rem 0;
}
.tech-shield-gpt-section .tech-shield-content .tech-shield-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #E10712 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.tech-shield-gpt-section .tech-shield-content .tech-shield-description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.tech-shield-gpt-section .tech-shield-content .tech-shield-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #E10712 0%, #991916 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(225, 7, 18, 0.3);
}
.tech-shield-gpt-section .tech-shield-content .tech-shield-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(225, 7, 18, 0.5);
  background: linear-gradient(135deg, #f70a16 0%, #af1d19 100%);
}
.tech-shield-gpt-section .tech-shield-content .tech-shield-cta i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.tech-shield-gpt-section .tech-shield-content .tech-shield-cta:hover i {
  transform: translateX(5px);
}
.tech-shield-gpt-section .tech-shield-image {
  position: relative;
  padding: 1rem;
}
.tech-shield-gpt-section .tech-shield-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.1) 100%);
  border-radius: 20px;
  z-index: -1;
  filter: blur(20px);
}
.tech-shield-gpt-section .tech-shield-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.tech-shield-gpt-section .tech-shield-image:hover img {
  transform: scale(1.02);
}
@media (max-width: 991px) {
  .tech-shield-gpt-section {
    padding: 60px 0;
  }
  .tech-shield-gpt-section .tech-shield-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  .tech-shield-gpt-section .tech-shield-content .tech-shield-description {
    max-width: 100%;
  }
  .tech-shield-gpt-section .tech-shield-image {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .tech-shield-gpt-section {
    padding: 40px 0;
  }
  .tech-shield-gpt-section .tech-shield-content .tech-shield-title {
    font-size: 28px;
    margin-bottom: 1rem;
  }
  .tech-shield-gpt-section .tech-shield-content .tech-shield-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .tech-shield-gpt-section .tech-shield-content .tech-shield-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

.triple-force-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.triple-force-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 7, 18, 0.1) 0%, rgba(153, 25, 22, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}
.triple-force-section > * {
  position: relative;
  z-index: 1;
}
.triple-force-section .triple-force-card {
  background: linear-gradient(135deg, #18080e 0%, #1f0a10 100%);
  border: 1px solid rgba(225, 7, 18, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}
.triple-force-section .triple-force-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.05) 0%, rgba(153, 25, 22, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.triple-force-section .triple-force-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(225, 7, 18, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.triple-force-section .triple-force-card:hover {
  transform: translateY(-10px);
  border-color: rgba(225, 7, 18, 0.5);
  box-shadow: 0 15px 50px rgba(225, 7, 18, 0.2);
}
.triple-force-section .triple-force-card:hover::before {
  opacity: 1;
}
.triple-force-section .triple-force-card:hover::after {
  opacity: 1;
}
.triple-force-section .triple-force-card:hover .force-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: #E10712;
  background: linear-gradient(135deg, rgba(225, 7, 18, 0.2) 0%, rgba(153, 25, 22, 0.1) 100%);
}
.triple-force-section .triple-force-card:hover .force-icon i {
  color: #fff;
}
.triple-force-section .triple-force-card:hover .force-number {
  color: #E10712;
  transform: scale(1.1);
}
.triple-force-section .triple-force-card .force-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(225, 7, 18, 0.6);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.triple-force-section .triple-force-card .force-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(225, 7, 18, 0.1);
  border: 2px solid rgba(225, 7, 18, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.triple-force-section .triple-force-card .force-icon i {
  font-size: 2.5rem;
  color: #E10712;
  transition: all 0.3s ease;
}
.triple-force-section .triple-force-card .force-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}
.triple-force-section .triple-force-card .force-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #E10712;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.triple-force-section .triple-force-card .force-description {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .triple-force-section {
    padding: 60px 0;
  }
  .triple-force-section .triple-force-card {
    min-height: 320px;
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .triple-force-section {
    padding: 40px 0;
  }
  .triple-force-section .triple-force-grid {
    margin-top: 2rem;
  }
  .triple-force-section .triple-force-card {
    min-height: 300px;
    padding: 1.5rem;
  }
  .triple-force-section .triple-force-card .force-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }
  .triple-force-section .triple-force-card .force-icon i {
    font-size: 2rem;
  }
  .triple-force-section .triple-force-card .force-title {
    font-size: 1.3rem;
  }
  .triple-force-section .triple-force-card .force-subtitle {
    font-size: 0.95rem;
  }
  .triple-force-section .triple-force-card .force-description {
    font-size: 0.9rem;
  }
}

.discovery-section {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(#00040C, #991916);
}

.floating-discovery-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(0, 4, 12, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.floating-discovery-btn .icon-box {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #E10712, #991916);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(225, 7, 18, 0.4);
  transition: transform 0.4s ease;
}
.floating-discovery-btn .text {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding-right: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 150px; /* Visible by default */
  overflow: hidden;
  opacity: 1; /* Visible by default */
  white-space: nowrap;
  transition: all 0.4s ease;
}
.floating-discovery-btn:hover {
  padding-right: 5px; /* Adjust spacing */
  background: rgba(0, 4, 12, 0.8);
  border-color: rgba(225, 7, 18, 0.3);
  transform: translateY(-5px);
  /* Hover state text styles (no change needed essentially, but keeping structure) */
}
.floating-discovery-btn:hover .icon-box {
  transform: rotate(45deg);
}
.floating-discovery-btn:hover .text {
  max-width: 150px;
  opacity: 1;
  padding-right: 15px;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .floating-discovery-btn {
    bottom: 20px;
    left: 20px;
  }
  .floating-discovery-btn .text {
    max-width: 150px; /* Keep visible on mobile too */
    opacity: 1;
  }
}

.team-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.team-section .team-card {
  background: rgba(24, 8, 14, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}
.team-section .team-card:hover {
  transform: translateY(-10px);
  border-color: #E10712;
  box-shadow: 0 10px 30px rgba(225, 7, 18, 0.2);
}
.team-section .team-card:hover .team-img img {
  transform: scale(1.1);
}
.team-section .team-card:hover .team-img::after {
  opacity: 0.8;
}
.team-section .team-card .team-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.9;
}
.team-section .team-card .team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.team-section .team-card .team-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgb(0, 4, 12), transparent);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.team-section .team-card .team-info {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: -3rem;
}
.team-section .team-card .team-info h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: "Avenir Next Cyr", sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.team-section .team-card .team-info p {
  color: #E10712;
  margin-bottom: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.clients-section {
  padding: 100px 0;
}
.clients-section .client-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.clients-section .client-card:hover {
  transform: translateY(-5px);
  border-color: #E10712;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 20px rgba(225, 7, 18, 0.15);
}
.clients-section .client-card:hover .client-logo {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.clients-section .client-card .client-logo-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients-section .client-card .client-logo {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(1.1);
  transition: all 0.5s ease;
  opacity: 0.9;
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.3s ease forwards;
}
.lightbox-modal .close-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}
.lightbox-modal .close-lightbox:hover, .lightbox-modal .close-lightbox:focus {
  color: #E10712;
  text-decoration: none;
  cursor: pointer;
}
.lightbox-modal .lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}
.lightbox-modal .lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(225, 7, 18, 0.2);
  animation: zoomIn 0.3s ease;
}
.lightbox-modal .lightbox-caption {
  margin-top: 20px;
  color: #ccc;
  font-family: "Avenir Next Cyr", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.lightbox-modal .lightbox-navigation {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  left: 0;
  pointer-events: none;
}
.lightbox-modal .lightbox-navigation .nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  pointer-events: auto;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -60px;
}
.lightbox-modal .lightbox-navigation .nav-btn:hover {
  background: #E10712;
  color: white;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .lightbox-modal .lightbox-navigation .nav-btn {
    margin: 0 -20px;
    background: rgba(0, 0, 0, 0.5);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */