/* ============================================
   Aqua Exchange - Theme CSS
   ============================================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #333;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

a:hover {
  color: #0071D0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

p {
  margin-top: 0;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
}

.skip-link:focus {
  top: 0;
  z-index: 99999;
  background: #fff;
  padding: 10px 20px;
}

/* === ELEMENTOR GRID === */
.elementor-section {
  width: 100%;
  position: relative;
}

.elementor-section-full_width {
  width: 100%;
}

.elementor-section-boxed>.elementor-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.elementor-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.elementor-column {
  position: relative;
  min-height: 1px;
}

.elementor-col-100 {
  width: 100%;
  flex: 0 0 100%;
}

.elementor-col-50 {
  width: 50%;
  flex: 0 0 50%;
}

.elementor-col-33 {
  width: 33.333%;
  flex: 0 0 33.333%;
}

.elementor-col-25 {
  width: 25%;
  flex: 0 0 25%;
}

.elementor-col-40 {
  width: 40%;
  flex: 0 0 40%;
}

.elementor-col-60 {
  width: 60%;
  flex: 0 0 60%;
}

.elementor-column-gap-no>.elementor-column {
  padding: 0;
}

.elementor-widget-wrap {
  width: 100%;
  position: relative;
}

.elementor-element-populated {
  width: 100%;
}

.elementor-widget-container {
  width: 100%;
}

.elementor-inner-section {
  width: 100%;
}

.elementor-inner-section>.elementor-container {
  flex-wrap: nowrap;
}

/* === HEADER === */
.header-area.header-three-wrp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #1a7ec5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.tronix-header {
  padding: 0;
}

.menu-area {
  padding: 12px 0;
}

.header-logo img {
  max-height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header-logo a {
  display: inline-flex;
  align-items: center;
}

/* === DESKTOP NAV === */
.main-menu {
  display: flex;
  align-items: center;
}

.main-menu ul {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
  position: relative;
}

.main-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-menu ul li a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.main-menu ul li a:hover::after {
  transform: scaleX(1);
}

/* === MOBILE MENU PANEL === */
.tronix-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: #111827;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 25px 20px;
  pointer-events: none;
}

.tronix-menu-wrapper.active {
  transform: translateX(0);
  pointer-events: auto;
}

.tronix-menu-wrapper .mobile-logo {
  margin-bottom: 30px;
}

.tronix-menu-wrapper .mobile-logo img {
  max-height: 38px;
  filter: brightness(0) invert(1);
}

.tronix-menu-wrapper .tronix-menu-toggle {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px;
  transition: color 0.2s;
}

.tronix-menu-wrapper .tronix-menu-toggle:hover {
  color: #fff;
}

.tronix-mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s, padding-left 0.2s;
}

.tronix-mobile-menu ul li a:hover {
  color: #fff;
  padding-left: 8px;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Hamburger in header */
header .tronix-menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  padding: 10px;
  line-height: 1;
  z-index: 1001;
  position: relative;
}

/* === HERO / SLIDER === */
.tronix-slider-wrapper {
  position: relative;
}

.slider-area {
  position: relative;
  overflow: hidden;
}

.slider-item {
  position: relative;
}

.slider-items {
  position: relative;
}

.slider-item-bg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s ease-in-out;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s ease-in-out;
}

.tronix-table {
  display: table;
  width: 100%;
  height: 100%;
}

.tronix-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.slide-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-stitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  display: block;
}

/* === ABOUT === */
.about-section-wraper {
  padding: 0;
}

#home {
  margin-bottom: 80px !important;
}

#aboutUs {
  padding: 80px 0 !important;
}

/* Main two-column container */
#aboutUs>.elementor-container {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  padding: 0 80px !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  gap: 50px !important;
}

/* Left image column - 50% */
#aboutUs>.elementor-container>.elementor-col-50:first-child {
  flex: 0 0 48% !important;
  width: 48% !important;
  max-width: 48% !important;
}

/* Right text column - 50% */
#aboutUs>.elementor-container>.elementor-col-50:last-child {
  flex: 0 0 48% !important;
  width: 48% !important;
  max-width: 48% !important;
  padding-right: 0 !important;
}

/* Image grid: two small stacked + one big */
.grid-image-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 16px !important;
  width: 100% !important;
}

.small-image-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  flex-shrink: 0 !important;
  width: 38% !important;
}

.small-image-one,
.small-image-two {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.small-image-one img,
.small-image-two img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 12px;
  object-fit: cover !important;
  display: block;
}

.big-image {
  flex: 1 !important;
  overflow: hidden;
  border-radius: 12px;
}

.big-image img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 12px;
  object-fit: cover !important;
  display: block;
}

/* Remove Bootstrap container constraints inside About Us */
#aboutUs .about-section-wraper .container,
#aboutUs .elementor-inner-section .container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

#aboutUs .about_content {
  padding: 0;
}

#aboutUs .elementor-inner-section .row {
  margin: 0 !important;
}

#aboutUs .elementor-inner-section [class*="col-"] {
  padding: 0 !important;
}

/* Inner section: 2020 + bullet points row */
#aboutUs .elementor-inner-section {
  margin-top: 25px !important;
}

#aboutUs .elementor-inner-section>.elementor-container {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 25px !important;
  padding: 0 !important;
}

/* 2020 column - auto width */
#aboutUs .elementor-inner-section .elementor-inner-column:first-child {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
}

/* Bullets column - takes remaining space */
#aboutUs .elementor-inner-section .elementor-inner-column:last-child {
  flex: 1 1 0% !important;
  width: auto !important;
  max-width: none !important;
}

/* 2020 heading */
#aboutUs .elementor-heading-title {
  font-family: "Outfit", sans-serif;
}

#aboutUs h2.elementor-heading-title {
  font-size: 60px !important;
  color: #0071D0 !important;
  line-height: 1 !important;
  margin: 0 !important;
  font-weight: 700 !important;
}

#aboutUs h6.elementor-heading-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #222;
  margin-top: 8px;
}

/* Bullet list items */
#aboutUs .tronix_list-wrapper {
  margin-top: 0;
}

#aboutUs .tronix-list-box-item {
  padding: 5px 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

#aboutUs .tronix-list-title {
  font-size: 15px !important;
  color: #333 !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

/* About Us text styles */
.about-small-stitle {
  color: #0071D0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.about-small-stitle::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #0071D0;
  display: inline-block;
  flex-shrink: 0;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-des {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* New about image (for second about section) */
.new-about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-about-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  #home {
    margin-bottom: 0 !important;
  }

  #aboutUs {
    padding: 15px 0 !important;
  }

  #aboutUs>.elementor-container {
    flex-wrap: wrap !important;
    padding: 0 15px !important;
    gap: 20px !important;
  }

  #aboutUs>.elementor-container>.elementor-col-50:first-child,
  #aboutUs>.elementor-container>.elementor-col-50:last-child {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .grid-image-wrapper {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .small-image-wrapper {
    flex-direction: row !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .small-image-one,
  .small-image-two {
    flex: 1 !important;
    height: 200px !important;
  }

  .big-image {
    width: 75% !important;
    flex: 0 0 auto !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .big-image img {
    height: auto !important;
  }

  #aboutUs .elementor-inner-section>.elementor-container {
    flex-wrap: wrap !important;
  }

  #aboutUs h2.elementor-heading-title {
    font-size: 42px !important;
  }
}

/* === TRONIX LIST === */
.tronix_list-wrapper {
  margin-top: 20px;
}

.tronix-list-box-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.tronix-list-icon {
  font-size: 20px;
  color: #0071D0;
  flex-shrink: 0;
}

.tronix-list-title {
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

/* === SECTION TITLES === */
.tronix-section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.tronix-section-small-title {
  color: #0071D0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  white-space: nowrap;
}

.tronix-section-small-title::before,
.tronix-section-small-title::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #0e59f2;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.tronix-section-title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
}

/* === PROCESS SECTION === */
.tronix-service-three-wrapper {
  padding: 40px 0;
}

.tronix-service-three-item {
  text-align: center;
  padding: 30px 15px;
}

.tronix-service-three-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.tronix-service-three-icon img {
  width: 110px;
  height: 110px;
  background: transparent;
  border: none;
  border-radius: 50%;
  padding: 0;
  box-sizing: border-box;
}

.process-step-up .tronix-service-three-icon img {
  width: 150px;
  height: 150px;
}

.process-step-up:nth-child(3) .tronix-service-three-icon img {
  filter: drop-shadow(0 0 15px rgba(14, 89, 242, 0.6));
}

.tronix-service-three-icon-attr {
  position: absolute;
  top: 0;
  right: -5px;
  background: #0e59f2;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.tronix-service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-three-des {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.6;
}

/* Process steps wave layout */
.process-steps-row {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.process-step {
  position: relative;
}

.process-step-up {
  padding-top: 0;
}

.process-step-down {
  padding-top: 80px;
}

/* Curved arrows between process steps */
.process-step:not(:last-child)::after {
  content: '➜';
  position: absolute;
  right: -25px;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.4);
  z-index: 10;
}

.process-step-up:not(:last-child)::after {
  top: 30%;
  transform: rotate(35deg);
}

.process-step-down:not(:last-child)::after {
  top: 15%;
  transform: rotate(-35deg);
}

@media (max-width: 991px) {
  .process-step-down {
    padding-top: 0;
  }

  .process-step::after {
    display: none !important;
  }
}

/* === PRODUCTS / PROJECTS === */
.project-title-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.tronix-project-wrapper {
  padding: 80px 0;
  overflow: hidden;
}

.project-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.project-arrow-wrapper {
  display: flex;
  gap: 10px;
  padding-top: 20px;
}

.project-arrow-wrapper button {
  background: #0071D0;
  border: 2px solid #0071D0;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.project-arrow-wrapper button:hover {
  background: transparent;
  color: #0071D0;
}

.project-arrow-wrapper button i {
  font-size: 20px;
}

/* Product cards */
.tronix-project-box {
  position: relative;
}

.product-image-wrapper {
  position: relative;
  display: block;
}


/* Top Left Name */
.product-name-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
}

/* Bottom Description */
.product-description-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  /* background: linear-gradient(to top, rgba(33, 33, 33, 0.8), transparent); */
  color: #333333;
  font-size: 14px;
}

.product-image-wrapper a {
  position: relative;
  display: block;
}

.product-name-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 113, 208, 0.9);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  z-index: 10;
  pointer-events: none;
}

.product-description {
  padding: 15px;
  background: #f8f9fa;
  border-top: 2px solid #0071D0;
  margin-top: -4px;
}

.product-description p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.box-content-area {
  position: relative;
}

.project-description {
  padding: 15px;
  font-size: 15px;
}

.box-content {
  padding: 15px 10px 5px;
  display: none;
}

.project-category {
  display: none;
}

.project-category ul li a {
  font-size: 12px;
  color: #0071D0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.project-title a {
  color: #1a1a2e;
}

.project-title a:hover {
  color: #0071D0;
}

/* Slick slider overrides */
.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto;
}

.slick-slide>div {
  height: 100%;
}

/* === TEAM === */
.tronix-team-four-wrapper {
  padding: 0;
}

.tronix-team-four-item {
  text-align: center;
  margin-bottom: 30px;
}

.team-four-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 18px;
}

.team-four-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tronix-team-four-item:hover .team-four-image img {
  transform: scale(1.04);
}

/* Team social overlay */
.team-share-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 30px 15px 15px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tronix-team-four-item:hover .team-share-box {
  opacity: 1;
}

.team-share-box ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-share-box ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.team-share-box ul li a:hover {
  background: #0071D0;
  color: #fff;
}

.team-four-content {
  padding: 0 5px;
}

.team-four-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #1a1a2e;
}

.team-four-title a {
  color: #1a1a2e;
}

.team-four-title a:hover {
  color: #0071D0;
}

.team-four-stitle {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

/* === NEWS === */
.tronix-news-wrapper {
  padding: 80px 0;
}

.news-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.news-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.news-thumb {
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-item:hover .news-thumb img {
  transform: scale(1.05);
}

.lower-content {
  padding: 22px;
}

.post-info {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.post-info li {
  font-size: 13px;
  color: #888;
}

.post-info li i {
  margin-right: 5px;
  color: #0071D0;
}

.lower-content h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.lower-content h4 a:hover {
  color: #0071D0;
}

.news-btns-sytle-two {
  color: #0071D0;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.news-btns-sytle-two:hover {
  color: #005bb5;
}

.news-button {
  margin-top: 10px;
}

/* News cards */
.news-block-one {
  margin-bottom: 30px;
  height: 100%;
}

.news-inner-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.twitter-card-box {
  padding: 0;
  overflow: hidden;
}

.twitter-card-box .twitter-tweet {
  margin: 0 !important;
  max-width: 100% !important;
}

.twitter-card-box iframe {
  border-radius: 12px !important;
}

.tronix-blog-section-inner .row {
  display: flex;
  flex-wrap: wrap;
}

.tronix-blog-section-inner .row>[class*="col-"] {
  display: flex;
}

.news-image-one {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.news-image-one img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  border-radius: 12px 12px 0 0;
  display: block;
}

.news-inner-box:hover .news-image-one img {
  transform: scale(1.04);
}

.lower-content {
  padding: 25px;
}

.lower-content h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.post-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  list-style: none;
  padding: 0;
}

.post-info li {
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-info li i {
  color: #0071D0;
}

/* === FOOTER === */
.site-footer {
  margin-top: 0;
  position: relative;
}

.footer-wave-shape {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-bottom: -1px;
}

.footer-wave-shape svg {
  width: 100%;
  height: 120px;
  display: block;
}

.footer-four-wrapper {
  background: #0f172a;
  color: #94a3b8;
  padding-top: 70px;
}

.footer-four-content-wrp {
  padding-bottom: 40px;
}

.footer-one-widget-title,
.footer-four-widget-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-one-widget-title::after,
.footer-four-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #0071D0;
}

.footer-four-widget-des {
  font-size: 14px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-four-about-widget-info {
  margin-bottom: 20px;
}

.footer-one-link-menu ul li,
.footer-one-service-list ul li {
  margin-bottom: 10px;
}

.footer-one-link-menu ul li a,
.footer-one-service-list ul li a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-one-link-menu ul li a:hover,
.footer-one-service-list ul li a:hover {
  color: #60a5fa;
  padding-left: 5px;
}

.footer-one-social-widget ul,
.footer-four-social ul {
  display: flex;
  gap: 10px;
}

.footer-one-social-widget ul li a,
.footer-four-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  transition: all 0.3s;
}

.footer-one-social-widget ul li a:hover,
.footer-four-social ul li a:hover {
  background: #0071D0;
  color: #fff;
}

.footer-four-copyright-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-four-copyright-text {
  color: #64748b;
  font-size: 13px;
}

.footer-four-logo-are img {
  max-height: 36px;
}

.footer-four-col {
  margin-bottom: 30px;
}

/* Footer contact */
.footer-four-contact-widget-info .footer-four-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.footer-four-contact-widget-info .contact-icon {
  font-size: 18px;
  color: #60a5fa;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-four-contact-widget-info .contact-text {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-four-contact-widget-info .contact-text a {
  color: #94a3b8;
}

.footer-four-contact-widget-info .contact-text a:hover {
  color: #60a5fa;
}

/* === BUTTONS === */
.theme-btns {
  display: inline-block;
  padding: 14px 32px;
  background: #0071D0;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  border: 2px solid #0071D0;
}

.theme-btns:hover {
  background: transparent;
  color: #0071D0;
}

/* === ELEMENTOR HEADING === */
.elementor-heading-title {
  padding: 0;
  margin: 0;
  line-height: 1.1;
}

.elementor-widget-heading .elementor-heading-title[class*="elementor-size-"]>a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.elementor-widget-heading .elementor-heading-title.elementor-size-small {
  font-size: 15px;
}

.elementor-widget-heading .elementor-heading-title.elementor-size-medium {
  font-size: 19px;
}

.elementor-widget-heading .elementor-heading-title.elementor-size-large {
  font-size: 29px;
}

.elementor-widget-heading .elementor-heading-title.elementor-size-xl {
  font-size: 39px;
}

.elementor-widget-heading .elementor-heading-title.elementor-size-xxl {
  font-size: 59px;
}

/* === MISC === */
.site {
  position: relative;
}

.tronix-template-home {
  position: relative;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.attachment-full,
.size-full,
.attachment-post-thumbnail,
.size-post-thumbnail {
  max-width: 100%;
  height: auto;
}

.video-button-area {
  margin-top: 30px;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0071D0;
  color: #fff;
  font-size: 18px;
}

[data-settings*="background_background"] {
  background-size: cover;
  background-position: center;
}

/* === BODY TOP PADDING FOR FIXED HEADER === */
body.home {
  padding-top: 72px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .elementor-col-50 {
    width: 100%;
    flex: 0 0 100%;
  }

  .about-section-wraper {
    padding: 50px 15px;
  }

  .grid-image-wrapper {
    padding-left: 0 !important;
    justify-content: center;
  }

  .elementor-container {
    padding: 0 10px;
  }
}

@media (max-width: 991px) {
  .header-area.header-three-wrp {
    position: relative;
  }

  body.home {
    padding-top: 0;
  }

  /* Hero: ensure video displays on mobile in landscape */
  .slider-item-bg {
    min-height: 250px !important;
    height: 56.25vw !important;
    /* 16:9 aspect ratio (9/16 = 0.5625) */
    max-height: 400px !important;
    position: relative !important;
  }

  .hero-placeholder {
    position: relative !important;
    height: auto !important;
  }

  .hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    z-index: 1 !important;
  }

  .tronix-table {
    display: none !important;
  }

  .slider-content-box {
    display: none !important;
  }
}

@media (max-width: 768px) {

  .elementor-col-50,
  .elementor-col-33,
  .elementor-col-25,
  .elementor-col-40,
  .elementor-col-60 {
    width: 100%;
    flex: 0 0 100%;
  }

  .elementor-container {
    flex-direction: column;
  }

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

  .about-title,
  .tronix-section-title {
    font-size: 30px;
  }

  .footer-four-copyright-section {
    flex-direction: column;
    text-align: center;
  }

  .tronix-team-four-wrapper,
  .tronix-news-wrapper {
    padding: 50px 0;
  }

  .tronix-project-wrapper {
    padding: 50px 0;
  }

  .project-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-title-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }

  .project-section-title .tronix-section-small-title {
    display: none;
  }

  .project-section-title .tronix-section-title {
    font-size: 32px;
    font-weight: 700;
  }

  .project-arrow-wrapper button {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
  }

  /* Product images mobile */
  .tronix-project-box img,
  .tronix-project-box .img-responsive,
  .tronix-project-box .wp-post-image {
    height: 250px !important;
  }

  /* Process section mobile */
  .tronix-service-three-item {
    text-align: center;
    padding: 40px 20px;
  }

  .tronix-service-three-icon {
    display: inline-block;
    margin-bottom: 25px;
  }

  .tronix-service-three-icon img {
    width: 140px;
    height: 140px;
    padding: 25px;
  }

  .tronix-service-three-icon-attr {
    width: 36px;
    height: 36px;
    font-size: 14px;
    top: 5px;
    right: -2px;
  }

  .tronix-service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .service-three-des {
    font-size: 15px;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
  }

  #process .tronix-section-title {
    font-size: 38px !important;
    line-height: 1.15 !important;
  }

  .team-four-image img {
    height: 280px;
  }

  #home {
    margin-bottom: 0 !important;
  }

  #aboutUs {
    padding: 10px 0 !important;
  }

  #aboutUs>.elementor-container {
    padding: 0 15px !important;
    gap: 15px !important;
  }

  .grid-image-wrapper {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .small-image-wrapper {
    flex-direction: row !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .small-image-one,
  .small-image-two {
    flex: 1 !important;
    height: 200px !important;
  }

  .big-image {
    width: 75% !important;
    flex: 0 0 auto !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .big-image img {
    height: auto !important;
  }

  #aboutUs .elementor-inner-section>.elementor-container {
    flex-wrap: wrap !important;
    gap: 15px !important;
  }

  #aboutUs h2.elementor-heading-title {
    font-size: 36px !important;
  }
}

/* === POST / POLICY PAGES === */
.single-post-item {
  padding: 40px 0;
}

.single-post-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

.post-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e5e7eb;
}

.post-content-wrapper {
  line-height: 1.8;
  color: #444;
}

.post-content-wrapper p {
  margin-bottom: 16px;
}

.post-content-wrapper h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-top: 30px;
  margin-bottom: 12px;
}

.post-excerpt {
  font-size: 15px;
  line-height: 1.8;
}

.post-excerpt p {
  margin-bottom: 14px;
}

.tronix-button {
  margin-top: 25px;
}

/* === BACK TO TOP === */
.to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #0071D0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
  z-index: 99999;
  pointer-events: auto;
  text-decoration: none;
}

.to-top:hover {
  opacity: 1;
  color: #fff;
}

/* === CONTACT PAGE: ICON BOXES === */
.tronix-icon-box-wrapper {
  padding: 20px 0;
}

.tronix-icon-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.tronix-icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tronix-icon-box .tronix-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 113, 208, 0.1);
  border-radius: 12px;
  color: #0071D0;
  font-size: 22px;
}

.icon-box-content {
  flex: 1;
}

.icon-box-title-label {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 500;
}

.icon-box-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.5;
}

/* === CONTACT PAGE: FORM === */
.tronix-ctf7s-wrapper {
  padding: 10px 0;
}

.tronix-contact-from-one-wrappwr {
  padding: 0;
}

.tronix-input-area {
  margin-bottom: 20px;
}

.tronix-input-area input,
.tronix-input-area textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d1d5db !important;
  border-radius: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: #333;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.tronix-input-area input:focus,
.tronix-input-area textarea:focus {
  border-color: #0071D0 !important;
  box-shadow: 0 0 0 3px rgba(0, 113, 208, 0.1);
  background: #fff;
}

.tronix-input-area input::placeholder,
.tronix-input-area textarea::placeholder {
  color: #9ca3af;
}

.tronix-contact-button {
  margin-top: 10px;
}

.tronix-contact-button input[type="submit"] {
  cursor: pointer;
  border: none;
  font-family: "Outfit", sans-serif;
}

.site-main.content-area {
  padding: 20px 0;
}

/* === TESTIMONIALS (Customer Stories) === */
.testi-v4-wrapper {
  padding: 20px 0;
  background: transparent !important;
}

#testimonial-2924 {
  background: transparent !important;
}

/* Fallback grid when Slick is not initialized */
#testimonial-2924:not(.slick-initialized) {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

#testimonial-2924:not(.slick-initialized) .testi-v4-coloum {
  width: 33.333%;
  flex: 0 0 33.333%;
}

@media (max-width: 1023px) {
  #testimonial-2924:not(.slick-initialized) .testi-v4-coloum {
    width: 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 767px) {
  #testimonial-2924:not(.slick-initialized) .testi-v4-coloum {
    width: 100%;
    flex: 0 0 100%;
  }
}

.testi-v4-coloum {
  padding: 0 15px;
  box-sizing: border-box;
}

.testi-v4-item,
#testimonial-2924 .testi-v4-item,
.testi-v4-wrapper .testi-v4-item {
  background: #ffffff !important;
  border: 1px solid #e5e7eb;
  border-left: 3px solid #0071D0;
  border-radius: 16px;
  padding: 30px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: box-shadow 0.3s;
}

.testi-v4-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testi-v4-des {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 24px;
  flex: 1;
}

.testi-v4-des br {
  display: none;
}

.testi-v4-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.testi-v4-image {
  flex-shrink: 0;
  width: 60px !important;
  height: 60px !important;
  min-width: 60px;
  max-width: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #0071D0;
}

.testi-v4-image img {
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  min-width: 60px !important;
  min-height: 60px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}

.testi-v4-content {
  flex: 1;
}

.testi-v4-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 2px 0;
}

.testi-v4-designation {
  font-size: 14px;
  color: #0071D0;
  font-weight: 400;
}

/* Slick overrides for testimonials — equal height cards */
#testimonial-2924.slick-initialized .slick-track {
  display: flex !important;
  align-items: stretch !important;
}

#testimonial-2924.slick-initialized .slick-slide {
  height: auto !important;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex !important;
}

#testimonial-2924.slick-initialized .slick-slide>div {
  height: 100%;
  display: flex;
  width: 100%;
}

#testimonial-2924.slick-initialized .testi-v4-coloum {
  height: 100%;
  display: flex;
  width: 100%;
}

#testimonial-2924.slick-initialized .testi-v4-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#testimonial-2924 .slick-list {
  margin: 0 -10px;
}

/* Fallback (non-slick) equal height */
#testimonial-2924:not(.slick-initialized) {
  align-items: stretch !important;
}

#testimonial-2924:not(.slick-initialized) .testi-v4-coloum {
  display: flex;
}

#testimonial-2924:not(.slick-initialized) .testi-v4-item {
  height: 100%;
}

@media (max-width: 767px) {
  .testi-v4-item {
    min-height: auto;
    padding: 24px 20px;
  }
}

/* === FOOTER NEWSLETTER === */
.footer-footer_four_newslatter {
  margin-bottom: 20px;
}

.footer-four-news-des {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 20px;
}

.tronix-button-wrapper {
  margin-top: 15px;
}