:root {
  --orange: #ff7a00;
  --orange-dark: #e46800;
  --blue: #0b4fa3;
  --blue-dark: #083a7a;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --shadow: 0 14px 35px rgba(2, 8, 23, 0.12);
  --radius: 16px;
  --motion-duration: 1.45s;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-glow: 0 16px 38px rgba(255, 122, 0, 0.12);
}

* {
  box-sizing: border-box;
}




body {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #0f2f5e;
  color: #f8fafc;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  color: #f8fafc;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #edf2f7;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}


.logo img {
  width: 240px;
  height: 90px;
  object-fit: contain;
  /*border-radius: 10px;*/
  background: #fff;
  /*box-shadow: 0 6px 18px rgba(11, 79, 163, 0.2);*/
}

.logo span {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
}

.logo small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  font-weight: 600;
  color: #0f172a;
  padding: 8px 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 122, 0, 0.12);
  color: var(--orange-dark);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--blue);
  display: block;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--blue);
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
}

.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90%);
  height: 100vh;
  background: #0f172a;
  color: #fff;
  padding: 28px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.side-drawer.open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 55;
}

.drawer-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.drawer-close {
  align-self: flex-end;
  background: #1f2937;
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
}

.drawer-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.drawer-block h4 {
  margin: 0 0 8px 0;
  font-family: 'Sora', sans-serif;
}

.section {
  padding: 20px 0;
  position: relative;
}

.section.alt {
  background: var(--bg-soft);
}

.section-head {
  margin-bottom: 36px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--blue);
  margin: 0 0 12px 0;
}

.section-sub {
  color: var(--muted);
  max-width: 680px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(255, 122, 0, 0.3);
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

.hero-slider .item {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--blue);
  border-radius: 24px;
  overflow: hidden;
}

.hero-section {
  padding: 0;
}

.hero-section .hero-slider .item {
  min-height: 100vh;
  border-radius: 0;
}

.hero-section .owl-stage-outer {
  border-radius: 0;
}

.hero-section .hero-content {
  padding: 90px min(8vw, 90px);
}

.hero-section .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
}

.hero-section .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.45);
  width: 10px;
  height: 10px;
}

.hero-section .owl-dots .owl-dot.active span {
  background: var(--orange);
}

.hero-slider .item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 31, 66, 0.8), rgba(11, 31, 66, 0.3));
}

.hero-slider .item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px;
  max-width: 620px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.12;
  margin: 0 0 16px 0;
  color: var(--blue);
  text-shadow: none;
}

.hero-content p {
  margin: 0 0 26px 0;
  color: var(--blue-dark);
}

.hero-section .hero-content h1,
.hero-section .hero-content p {
  color: var(--orange);
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.75);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #eef2f7;
  display: grid;
  gap: 16px;
}

.list-check {
  display: grid;
  gap: 10px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.list-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-check li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--orange);
  margin-top: 2px;
}

.advantage-grid,
.service-grid,
.industry-grid,
.blog-grid,
.product-grid,
.quality-grid {
  display: grid;
  gap: 22px;
}




.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.advantage-gridhome {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
}





.advantage-grid2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important;
}

.adv-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #eef2f7;
  box-shadow: 0 10px 25px rgba(2, 8, 23, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: none;
}

.adv-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(2, 8, 23, 0.12);
}

.cap-card,
.service-card,
.industry-card,
.customer-card,
.cert-card,
.product-card,
.blog-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #eef2f7;
  box-shadow: 0 12px 26px rgba(2, 8, 23, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cap-card:hover,
.service-card:hover,
.industry-card:hover,
.product-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(2, 8, 23, 0.14);
}

.cap-card img,
.product-card img,
.blog-card img,
.cert-card img,
.customer-card img {
  border-radius: 14px;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 14px;
}





.service-grid {
  /*grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
  grid-template-columns: repeat(3, 1fr);
}

.service-card i {
  font-size: 26px;
  color: var(--blue);
  background: rgba(11, 79, 163, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.service-card h4 {
  margin: 0 0 8px 0;
  font-family: 'Sora', sans-serif;
}

.industry-grid {
    grid-template-columns: repeat(4, 1fr);
}

.industry-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.industry-card span {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 18px rgba(2, 8, 23, 0.12);
}

.industry-card span i {
  font-size: 22px;
}

.industry-card h5 {
  margin: 0;
  font-size: 16px;
  font-family: 'Sora', sans-serif;
  color: #0f172a;
}

.inquiry-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.inquiry-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list i {
  color: var(--orange);
  margin-right: 8px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
}

.form-grid textarea {
  min-height: 110px;
  resize: vertical;
}

.customers .customer-card img {
  height: 140px;
  object-fit: contain;
  background: #f8fafc;
}




.certifications-carousel .cert-card {
  height: 100%;
  padding: 10px;
}


.certificatename
{
        display: flex;
    align-items: center;
    justify-content: center;
}

.certifications-carousel .cert-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #fff;
  padding: 12px;
  border: 1px solid #eef2f7;
  border-radius: 12px;
}

.certifications-carousel .cert-card h4 {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.4;
}



.certifications-carousel .owl-stage {
  display: flex;
}

.certifications-carousel .owl-item {
  display: flex;
}



.vision-section {
  background: linear-gradient(120deg, rgba(255, 122, 0, 0.08), rgba(11, 79, 163, 0.08));
}

.vision-section .adv-card {
  padding: 26px;
}

.vision-section .adv-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  margin-bottom: 10px;
}

.vision-section .adv-card h4 i {
  color: var(--orange);
  background: rgba(255, 122, 0, 0.12);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.vision-section .badge-row {
  margin-top: 14px;
}

body.motion-ready {
  overflow-x: clip;
}

.hero-section,
.section {
  overflow: clip;
}

.motion-section::before {
  content: '';
  position: absolute;
  inset: auto auto 10% -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08), rgba(255, 122, 0, 0));
  opacity: 0;
  transform: translateY(60px) scale(0.8);
  transition: opacity 1.1s ease, transform 1.1s var(--motion-ease);
  pointer-events: none;
}

.motion-section.is-visible::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-section:nth-of-type(even)::before {
  inset: 12% -90px auto auto;
  background: radial-gradient(circle, rgba(255, 184, 107, 0.08), rgba(255, 184, 107, 0));
}

.motion-item {
  --motion-delay: 0ms;
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  transition-delay: var(--motion-delay);
  will-change: transform, opacity;
}

.js-motion .motion-item {
  opacity: 0;
}

.js-motion .motion-item[data-reveal="up"],
.js-motion .motion-item:not([data-reveal]) {
  transform: translate3d(0, 46px, 0);
}

.js-motion .motion-item[data-reveal="left"] {
  transform: translate3d(-64px, 24px, 0);
}

.js-motion .motion-item[data-reveal="right"] {
  transform: translate3d(64px, 24px, 0);
}

.js-motion .motion-item[data-reveal="down"] {
  transform: translate3d(0, -46px, 0);
}

.js-motion .motion-item[data-reveal="zoom"] {
  transform: translate3d(0, 24px, 0) scale(0.88);
}

.js-motion .motion-item[data-reveal="rotate"] {
  transform: perspective(1200px) rotateX(18deg) rotateY(-12deg) translate3d(0, 42px, 0) scale(0.94);
  transform-origin: center center;
}

.js-motion .motion-item[data-reveal="blur"] {
  transform: translate3d(0, 52px, 0) scale(0.96);
}

.js-motion .motion-item[data-reveal="float"] {
  transform: translate3d(0, 36px, 0) scale(0.95) rotate(-3deg);
}

.js-motion .motion-item.is-visible {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
  animation-duration: 0.95s;
  animation-timing-function: var(--motion-ease);
  animation-fill-mode: both;
  animation-delay: var(--motion-delay);
}

.js-motion .motion-item.is-visible[data-reveal="left"] {
  animation-name: revealLeft;
}

.js-motion .motion-item.is-visible[data-reveal="right"] {
  animation-name: revealRight;
}

.js-motion .motion-item.is-visible[data-reveal="down"] {
  animation-name: revealDown;
}

.js-motion .motion-item.is-visible[data-reveal="zoom"] {
  animation-name: revealZoom;
}

.js-motion .motion-item.is-visible[data-reveal="rotate"] {
  animation-name: revealRotate;
}

.js-motion .motion-item.is-visible[data-reveal="blur"] {
  animation-name: revealBlur;
}

.js-motion .motion-item.is-visible[data-reveal="float"] {
  animation-name: revealFloat;
}

.js-motion .motion-item.is-visible[data-reveal="up"],
.js-motion .motion-item.is-visible:not([data-reveal]) {
  animation-name: revealUp;
}

.services-motion .service-card {
  transition-duration: 1.7s, 1.7s, 1.7s, 0.35s, 0.35s;
}

.industries-motion .industry-card {
  transition-duration: 1.6s, 1.6s, 1.6s, 0.35s, 0.35s;
}

.motion-item.is-visible.adv-card,
.motion-item.is-visible.cap-card,
.motion-item.is-visible.service-card,
.motion-item.is-visible.industry-card,
.motion-item.is-visible.customer-card,
.motion-item.is-visible.cert-card,
.motion-item.is-visible.inquiry-card {
  box-shadow: var(--motion-glow);
}

.motion-item.adv-card::before,
.motion-item.cap-card::before,
.motion-item.service-card::before,
.motion-item.industry-card::before,
.motion-item.customer-card::before,
.motion-item.cert-card::before,
.motion-item.inquiry-card::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -10%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.16), rgba(255, 122, 0, 0));
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(18px);
  pointer-events: none;
}

.motion-item.adv-card:hover::before,
.motion-item.cap-card:hover::before,
.motion-item.service-card:hover::before,
.motion-item.industry-card:hover::before,
.motion-item.customer-card:hover::before,
.motion-item.cert-card:hover::before,
.motion-item.inquiry-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.motion-item.adv-card:hover,
.motion-item.cap-card:hover,
.motion-item.service-card:hover,
.motion-item.industry-card:hover,
.motion-item.customer-card:hover,
.motion-item.cert-card:hover,
.motion-item.inquiry-card:hover {
  border-color: rgba(255, 122, 0, 0.26);
  transform: translateY(-10px);
}

.motion-item.is-visible.industry-card span,
.motion-item.is-visible.service-card i,
.motion-item.is-visible.vision-float i {
  animation: softFloat 4.8s ease-in-out infinite;
}

.motion-item.is-visible.customer-card img,
.motion-item.is-visible.cert-card img,
.motion-item.is-visible.cap-card img {
  animation: softPulse 5.5s ease-in-out infinite;
}

.section-head.motion-item .kicker {
  position: relative;
}

.section-head.motion-item .kicker::after {
  content: '';
  width: 54px;
  height: 2px;
  margin-left: 10px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0.3);
  transform-origin: left center;
  transition: transform 0.8s var(--motion-ease);
}

.section-head.motion-item.is-visible .kicker::after {
  transform: scaleX(1);
}

.hero-carousel .item img {
  transform: scale(1.12);
  transition: transform 7s ease, filter 1.2s ease;
  filter: saturate(0.95);
}

.hero-carousel .owl-item.motion-active .item img {
  transform: scale(1);
  filter: saturate(1.08);
}

.hero-carousel .hero-overlay::before,
.hero-carousel .hero-overlay::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}

.hero-carousel .hero-overlay::before {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -70px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.3), rgba(255, 122, 0, 0));
  animation: orbitDrift 10s ease-in-out infinite;
}

.hero-carousel .hero-overlay::after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  animation: orbitDrift 12s ease-in-out infinite reverse;
}

.hero-carousel .hero-subtitle,
.hero-carousel .hero-content h1,
.hero-carousel .hero-content p,
.hero-carousel .hero-btn-wrap {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(10px);
}

.hero-carousel .owl-item.motion-active .hero-subtitle,
.hero-carousel .owl-item.motion-active .hero-content h1,
.hero-carousel .owl-item.motion-active .hero-content p,
.hero-carousel .owl-item.motion-active .hero-btn-wrap {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity 0.8s var(--motion-ease),
    transform 0.8s var(--motion-ease),
    filter 0.8s var(--motion-ease);
}

.hero-carousel .owl-item.motion-active .hero-subtitle {
  transition-delay: 0.15s;
}

.hero-carousel .owl-item.motion-active .hero-content h1 {
  transition-delay: 0.26s;
}

.hero-carousel .owl-item.motion-active .hero-content p {
  transition-delay: 0.38s;
}

.hero-carousel .owl-item.motion-active .hero-btn-wrap {
  transition-delay: 0.5s;
}

.hero-content {
  position: relative;
}

.hero-content::after {
  content: '';
  position: absolute;
  inset: auto auto -24px 0;
  width: 130px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 122, 0, 0));
  border-radius: 999px;
  opacity: 0.85;
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 46px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealLeft {
  0% {
    opacity: 0;
    transform: translate3d(-64px, 24px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealRight {
  0% {
    opacity: 0;
    transform: translate3d(64px, 24px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -46px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealZoom {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.88);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealRotate {
  0% {
    opacity: 0;
    transform: perspective(1200px) rotateX(18deg) rotateY(-12deg) translate3d(0, 42px, 0) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealBlur {
  0% {
    opacity: 0;
    transform: translate3d(0, 52px, 0) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(0.95) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes orbitDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, 16px, 0) scale(1.08);
  }
}

.page-hero {
  padding: 54px 0 36px;
  text-align: center;
  background: linear-gradient(120deg, rgba(255, 122, 0, 0.12), rgba(11, 79, 163, 0.12));
}

.page-hero .hero-content {
  padding: 0;
  max-width: 760px;
  color: #0f172a;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  color: var(--blue);
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 6px;
}

.page-hero p {
  color: var(--muted);
  margin: 8px auto 0;
  max-width: 640px;
}

.split-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: center;
  margin-bottom: 40px;
}

.split-block.panel {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  align-items: stretch;
}

.split-block.panel > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.split-block.panel .about-image {
  display: block;
  height: 100%;
}

.split-block.panel .about-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.split-block.reverse {
  direction: rtl;
}

.split-block.reverse > * {
  direction: ltr;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: rgba(11, 79, 163, 0.08);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}

.product-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.product-filter button {
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.product-filter button.active,
.product-filter button:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-meta {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.product-meta strong {
  color: var(--blue);
}

.blog-grid {
  /*grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
  grid-template-columns: repeat(3, 1fr);
}

.blog-card .date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.blog-card h4 {
  margin: 6px 0 6px;
  font-family: 'Sora', sans-serif;
}

.blog-card p {
  margin: 0 0 12px;
}

.blog-layout {
  display: grid;
  gap: 28px;
  /*grid-template-columns: minmax(0, 1fr) 280px;*/
}

.blog-sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #eef2f7;
  box-shadow: 0 12px 26px rgba(2, 8, 23, 0.08);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 100;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.quality-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quality-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #eef2f7;
}

.quality-card i {
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 10px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.table-wrap th,
.table-wrap td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 14px;
}

.table-wrap th {
  background: #0b4fa3;
  color: #fff;
  font-weight: 700;
}

.table-wrap.compact table {
  min-width: 0;
}

.table-wrap.compact th,
.table-wrap.compact td {
  padding: 10px 12px;
  font-size: 13px;
}

footer {
  background: linear-gradient(135deg, #0b4fa3, #0f172a);
  color: #cbd5f5;
  padding: 60px 0 30px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #ffd19a);
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-grid h4 {
  margin: 0 0 12px 0;
  font-family: 'Sora', sans-serif;
  color: #fff;
}

.footer-grid p {
  margin: 0 0 8px;
}

.footer-grid a {
  color: #cbd5f5;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-content {
    padding: 50px 30px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .hero-content {
    max-width: 900px;
  }

  .hero-content h1 {
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .header-wrap {
    flex-wrap: wrap;
  }

  .hero-slider .item {
    min-height: 64vh;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .section {
    padding: 60px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}


@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.alert-success {
  background: #e6f7ee;
  color: #0b7a3d;
  border: 1px solid #bfead1;
}

.alert-danger {
  background: #fde8e8;
  color: #b42318;
  border: 1px solid #f8b4b4;
}

.footer-cert {
  width: 100%;
  max-width: 280px;
  margin-top: 16px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebe57;
}


.drawer-menu {
  display: grid;
  gap: 10px;
}

.drawer-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
}

.drawer-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.drawer-social-wrap {
  margin-top: 6px;
  padding: 14px 12px 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.drawer-social-wrap span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.drawer-social-links a {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.16);
  color: #fff;
}

.drawer-social-links a:hover {
  background: rgba(255, 122, 0, 0.28);
}

.menu-toggle {
  display: none;
}

@media (max-width: 980px) {
  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .header-wrap {
    padding: 12px 0;
  }

  .logo img {
    width: 170px;
    height: auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    flex-shrink: 0;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage-grid2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .blog-grid,
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    max-width: 100%;
    padding: 40px 24px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .section {
    padding: 42px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .section-sub {
    font-size: 15px;
  }

  .header-wrap {
    gap: 12px;
  }

  .logo img {
    width: 145px;
  }

  .topbar {
    font-size: 12px;
  }

  .topbar .container {
    gap: 6px;
    padding: 6px 0;
  }

  .hero-slider .item,
  .hero-section .hero-slider .item {
    min-height: 70vh;
  }

  .hero-content {
    padding: 24px 16px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.15;
    white-space: normal !important;
    word-break: break-word;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 10px;
  }

  .about-grid,
  .advantage-grid,
  .advantage-grid2,
  .advantage-gridhome,
  .service-grid,
  .industry-grid,
  .blog-grid,
  .product-grid,
  .quality-grid {
    grid-template-columns: 1fr !important;
  }

  .adv-card,
  .service-card,
  .industry-card,
  .cap-card,
  .product-card,
  .blog-card,
  .customer-card,
  .cert-card {
    padding: 16px;
  }

  .btn,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .side-drawer {
    width: 86%;
    padding: 22px 18px;
  }

  .footer-cert {
    max-width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .motion-section::before {
    width: 150px;
    height: 150px;
  }

  .hero-carousel .hero-overlay::before {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -90px;
  }

  .hero-carousel .hero-overlay::after {
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -70px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .section-title {
    font-size: 24px;
  }

  .logo img {
    width: 130px;
  }
}
