@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --primary-color: #e85d2f;
  --secondary-color: #000000;
  --accent-color: #f5a623;
  --gradient-color: linear-gradient(
    90deg,
    rgb(237, 34, 36) 0%,
    rgb(240, 90, 34) 50%,
    rgb(246, 143, 29) 100%
  );
  --text-dark: #000000;
  --text-light: #f5f5f5;
  --bg-light: #ffffff;
  --bg-dark: #000000;
  --border-color: #e0e0e0;
  --primary-font: "Poppins", sans-serif;
  --secondary-font: Georgia, serif;
  --font-size-small: 14px;
  --font-size-base: 16px;
  --font-size-menu: 16px;
  --font-size-title: 41px;
  --font-size-heromain: 3rem;
  --font-size-herosub: 1.25rem;
  --common-grid: 1200px;
  --transition: all 0.3s ease;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--primary-font);
  font-size: var(--font-size-base);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul,
ol {
  list-style: none;
}
.container {
  max-width: var(--common-grid);
  margin: 0 auto;
  padding: 0 20px;
}
.video-popup {
  cursor: pointer;
}
.section-padding {
  padding: 80px 0;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.section-title {
  font-family: var(--secondary-font);
  font-size: var(--font-size-title);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-title.white {
  color: var(--text-light);
}
.section-divider {
  width: 100px;
  height: 6px;
  background: var(--gradient-color);
  margin: 0 auto 40px;
  border-radius: 2px;
}
.section-divider.left {
  margin: 0 0 40px;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-family: var(--secondary-font);
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--gradient-color);
  color: var(--text-light);
  border: none;
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(232, 93, 47, 0.35);
  background: #fff;
  color: #ed2323;
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--text-light);
}
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: #0a0a0a;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
  background-color: #000;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.75;
  animation: videoFadeIn 1.2s ease forwards;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--common-grid);
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-text-block {
  width: 52%;
  text-align: left;
}
.hero-content h1 {
  font-family: var(--secondary-font);
  font-size: 2.8rem;
  color: var(--text-light);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: left;
}
.hero-content p {
  font-size: var(--font-size-herosub);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  line-height: 1.7;
  text-align: left;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  max-width: var(--common-grid);
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  outline: 0;
}
.logo-icon-svg {
  width: 44px;
  height: 44px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
  letter-spacing: 0.5px;
}
.logo-tagline {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-menu li a {
  font-family: var(--secondary-font);
  font-size: var(--font-size-menu);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-bottom: 4px;
}
.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-color);
  transition: width 0.3s ease;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--accent-color);
}
.nav-menu li a.active::after,
.nav-menu li a:hover::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.site-footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.65);
}
.footer-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr 0.8fr;
  align-items: center;
  max-width: var(--common-grid);
  margin: 0 auto;
  padding: 44px 40px;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 30px;
}
.footer-col-logo a {
  display: inline-block;
  line-height: 0;
}
.footer-col-tagline {
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-tagline {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2;
  margin: 0;
}
.footer-col-links {
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  display: inline-block;
  transition: var(--transition);
}
.footer-links li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}
.footer-col-social {
  display: flex;
  align-items: center;
  justify-content: left;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 30px;
  height: 100%;
}
.footer-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #da3c33;
  color: #ffffff;
  transition: var(--transition);
  flex-shrink: 0;
  text-decoration: none;
}
.footer-linkedin svg {
  display: block;
}
.footer-linkedin:hover {
  background: #0856a8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}
.footer-bottom {
  text-align: center;
  padding: 18px 20px;
  font-family: var(--primary-font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 36px 24px;
  }
  .footer-col-logo,
  .footer-col-tagline,
  .footer-col-links,
  .footer-col-social {
    border: none;
    padding: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 20px;
  }
}
.cta-section {
  background: var(--bg-dark);
  padding: 80px 20px 40px 20px;
  text-align: center;
}
.cta-section .container {
  border-bottom: 2px solid;
  border-image: var(--gradient-color) 1;
  padding-bottom: 80px;
}
.cta-section h2 {
  font-family: var(--secondary-font);
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 400;
}
.img-placeholder {
  background: #c8c8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
  font-family: var(--primary-font);
  border-radius: 6px;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu li a {
    display: block;
    padding: 13px 24px;
  }
  .nav-menu li a::after {
    display: none;
  }
  :root {
    --font-size-title: 28px;
    --font-size-heromain: 2rem;
  }
  .section-padding {
    padding: 55px 0;
  }
}
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
    padding: 36px 30px;
  }
  .footer-col-logo {
    border-right: none;
    padding-right: 0;
  }
  .footer-col-text {
    border-right: none;
    padding: 0;
  }
  .footer-col-links {
    border-right: none;
    padding: 0;
  }
  .footer-col-social {
    justify-content: flex-start;
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 20px;
  }
  .footer-col-social {
    justify-content: flex-start;
  }
}
.logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  width: 80%;
  max-width: 380px;
  display: block;
  object-fit: contain;
}
.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 2000;
  justify-content: center;
}
.logo-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-wrap svg {
  width: 40%;
}
.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid transparent;
  animation: spin 1.1s linear infinite;
}
.orbit-1 {
  border-top-color: #e83d1a;
  border-right-color: #f47a1f;
}
.orbit-2 {
  inset: 10px;
  border-bottom-color: #f9b124;
  border-left-color: #f47a1f;
  animation-duration: 1.7s;
  animation-direction: reverse;
}
.dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e83d1a;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.dot:nth-child(2) {
  background: #f47a1f;
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  background: #f9b124;
  animation-delay: 0.4s;
}
.label {
  font-family: sans-serif;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.1em;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.88);
    opacity: 0.8;
  }
}
@keyframes dotBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 1024px) {
  :root {
    --font-size-title: 34px;
    --font-size-heromain: 2.4rem;
    --font-size-herosub: 1.1rem;
  }
  .nav-wrapper {
    height: 76px;
  }
  .logo-img {
    height: 50px;
  }
  .nav-menu {
    gap: 28px;
  }
  .hero-text-block {
    width: 60%;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .cta-section h2 {
    font-size: 2.4rem;
  }
  .footer-col-tagline {
    padding: 0;
  }
}
@media (max-width: 768px) {
  :root {
    --font-size-title: 28px;
    --font-size-heromain: 1.9rem;
    --font-size-herosub: 1rem;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 999;
    padding: 80px 0 40px;
    overflow-y: auto;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  .nav-menu li a {
    display: block;
    padding: 18px 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav-menu li a::after {
    display: none;
  }
  .nav-wrapper {
    height: 68px;
  }
  .logo-img {
    height: 44px;
  }
  .hero {
    min-height: 60vh;
    padding-top: 68px;
  }
  .hero-content {
    padding: 60px 20px;
    align-items: flex-start;
  }
  .hero-text-block {
    width: 100%;
  }
  .hero-content h1 {
    font-size: 1.9rem;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .section-padding {
    padding: 55px 0;
  }
  .container {
    padding: 0 16px;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-section {
    padding: 50px 16px 40px;
  }
}
@media (max-width: 640px) {
  :root {
    --font-size-title: 24px;
    --font-size-heromain: 1.6rem;
    --font-size-herosub: 0.95rem;
  }
  .hero {
    min-height: 55vh;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content {
    padding: 50px 16px;
  }
  .section-title {
    margin-bottom: 10px;
  }
  .section-divider {
    width: 70px;
    height: 4px;
    margin-bottom: 35px;
  }
  .btn {
    padding: 11px 22px;
    font-size: 14px;
  }
  .cta-section h2 {
    font-size: 1.6rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 16px;
  }
  .footer-col-tagline,
  .footer-col-links,
  .footer-col-social {
    border: none;
    padding: 0;
  }
}
@media (max-width: 480px) {
  :root {
    --font-size-title: 22px;
    --font-size-base: 14px;
  }
  .hero {
    min-height: 50vh;
  }
  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .nav-wrapper {
    height: 70px;
  }
  .logo-img {
    height: 50px;
  }
  .footer-links {
    flex-direction: row;
  }
  .footer-links li {
    border-right: 1px solid rgba(255, 255, 255, 0.55);
    padding-right: 10px;
  }
  .footer-links li:last-child {
    border: 0;
  }
}
@media (max-width: 360px) {
  :root {
    --font-size-title: 20px;
  }
  .hero-content h1 {
    font-size: 1.25rem;
  }
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .hamburger {
    position: relative;
    z-index: 1100;
  }
  body.nav-open {
    overflow: hidden;
  }
  .logo {
    position: relative;
    z-index: 1100;
  }
  .site-header {
    z-index: 1050;
  }
  .nav-menu {
    z-index: 1000;
  }
  .nav-menu li a {
    padding: 20px 30px;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
  }
  .hero-video {
    opacity: 0.6;
  }
  .hero-bg-overlay {
    opacity: 0.55;
  }
}
@media (hover: none) {
  .industry-item:hover .industry-icon {
    transform: none;
    box-shadow: none;
  }
  .process-icon-wrap:hover {
    transform: none;
  }
  .cg1-photo:hover img,
  .cg2-photo:hover img {
    transform: none;
  }
}
@media print {
  .site-header,
  .hero-video,
  .hamburger,
  .loader {
    display: none !important;
  }
  body {
    font-size: 12pt;
  }
}
