.elementor-25 .elementor-element.elementor-element-c12a39f{--display:flex;--position:absolute;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;top:0px;--z-index:1111;}.elementor-25 .elementor-element.elementor-element-c12a39f:not(.elementor-motion-effects-element-type-background), .elementor-25 .elementor-element.elementor-element-c12a39f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}body:not(.rtl) .elementor-25 .elementor-element.elementor-element-c12a39f{left:0px;}body.rtl .elementor-25 .elementor-element.elementor-element-c12a39f{right:0px;}.elementor-25 .elementor-element.elementor-element-f2baa82{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:131px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-25 .elementor-element.elementor-element-dd3fdaf{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-25 .elementor-element.elementor-element-dd3fdaf.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-25 .elementor-element.elementor-element-c6cfc32{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-25 .elementor-element.elementor-element-24e6ffc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-25 .elementor-element.elementor-element-99e722b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-25 .elementor-element.elementor-element-a3e7400{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-25 .elementor-element.elementor-element-afbc683{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-25 .elementor-element.elementor-element-7dabfdf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-dd3fdaf *//* ===== ULTRA HERO BASE ===== */
.invodia-ultra-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, #0f2027, #0b0f1a 60%);
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
}

/* ===== TRUCK IMAGE ===== */
.hero-truck {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 55%;
  height: 90%;
  background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1400&q=80') no-repeat bottom right;
  background-size: contain;
  opacity: 0.85;
  z-index: 1;
  animation: truckFloat 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
}

@keyframes truckFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-20px); }
}

/* ===== MOVING GRADIENT LIGHT ===== */
.hero-gradient {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0,150,255,0.25), transparent 60%);
  animation: gradientMove 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes gradientMove {
  from { transform: translate(-10%, -10%) scale(1); }
  to { transform: translate(10%, 10%) scale(1.3); }
}

/* ===== SCANNING LIGHT BEAM ===== */
.hero-beam {
  position: absolute;
  width: 200px;
  height: 120%;
  background: linear-gradient(180deg, transparent, rgba(0,180,255,0.35), transparent);
  left: -200px;
  animation: beamMove 8s linear infinite;
  z-index: 2;
}

@keyframes beamMove {
  to { left: 110%; }
}

/* ===== FLOATING PARTICLES ===== */
.hero-particles::before,
.hero-particles::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, #00c6ff, transparent),
                    radial-gradient(2px 2px at 70% 60%, #ffffff, transparent),
                    radial-gradient(2px 2px at 40% 80%, #00c6ff, transparent);
  animation: particlesFloat 20s linear infinite;
  opacity: 0.4;
  z-index: 1;
}

@keyframes particlesFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}

/* ===== CONTENT CARD ===== */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0,150,255,0.15);
  animation: contentReveal 1.4s ease forwards;
  opacity: 0;
}

/* ===== TEXT ===== */
.hero-content h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  color: #d6e2ff;
  margin-bottom: 30px;
}

/* ===== BUTTON ===== */
.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,114,255,0.5);
}

/* ===== ENTRANCE ANIMATION ===== */
@keyframes contentReveal {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-truck {
    width: 90%;
    opacity: 0.4;
  }

  .hero-content {
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6b4df19 *//* ===== ABOUT SECTION ===== */
.invodia-about {
  padding: 80px 20px;
  background: #ffffff;
  color: #1a1a1a;
}

.invodia-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* ===== IMAGE ===== */
.about-image {
  flex: 1 1 450px;
  min-height: 320px;
  background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  animation: fadeLeft 1.2s ease forwards;
  opacity: 0;
}

/* ===== CONTENT ===== */
.about-content {
  flex: 1 1 450px;
  animation: fadeRight 1.2s ease forwards;
  opacity: 0;
}

.about-content h2 {
  font-size: 28px;
  margin-bottom: 18px;
  line-height: 1.3;
}

.about-content h2 span {
  color: #0072ff;
}

.about-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 15px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===== TABLET VIEW ===== */
@media (min-width: 768px) {
  .invodia-about {
    padding: 100px 40px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-content p {
    font-size: 16px;
  }
}

/* ===== DESKTOP VIEW ===== */
@media (min-width: 1024px) {
  .invodia-container {
    flex-wrap: nowrap;
  }

  .about-image {
    min-height: 420px;
  }

  .about-content h2 {
    font-size: 38px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-061260f *//* ===== CATEGORIES ===== */
.invodia-categories {
  padding: 100px 8%;
  background: #111827;
  text-align: center;
  color: #fff;
}

.invodia-categories h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.invodia-categories h2 span {
  color: #00c6ff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.category-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,150,255,0.3);
}

.cat-img {
  height: 180px;
  border-radius: 12px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
}

.gems { background-image: url('https://images.unsplash.com/photo-1600185365483-26d7b3e0a03f?auto=format&fit=crop&w=800&q=80'); }
.agro { background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=800&q=80'); }
.medical { background-image: url('https://images.unsplash.com/photo-1580281657521-9b0e5b0e9d8b?auto=format&fit=crop&w=800&q=80'); }

.category-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.category-card p {
  color: #cfd8e3;
  font-size: 14px;
  line-height: 1.6;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9ec57d8 *//* ===== WHY CHOOSE US ===== */
.invodia-why {
  padding: 100px 8%;
  background: #0b0f1a;
  color: #fff;
  text-align: center;
}

.invodia-why h2 {
  font-size: 34px;
  margin-bottom: 50px;
}

.invodia-why span {
  color: #00c6ff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.why-item {
  background: rgba(255,255,255,0.05);
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.why-item:hover {
  background: rgba(0,150,255,0.15);
  transform: translateY(-5px);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-129dda1 *//* ===== EXPORT PROCESS SECTION ===== */
.invodia-process {
  padding: 110px 8%;
  background: linear-gradient(180deg, #0b0f1a, #111827);
  color: #fff;
  text-align: center;
}

.invodia-process h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.invodia-process h2 span {
  color: #00c6ff;
}

.process-subtitle {
  max-width: 750px;
  margin: 0 auto 70px;
  color: #cfd8e3;
  font-size: 16px;
  line-height: 1.6;
}

/* Timeline Layout */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  position: relative;
}

/* Step Card */
.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px 25px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,150,255,0.25);
  border-color: rgba(0,150,255,0.4);
}

/* Step Number Icon */
.step-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 0 18px rgba(0,150,255,0.5);
}

/* Text */
.process-step h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.process-step p {
  font-size: 14px;
  color: #cfd8e3;
  line-height: 1.6;
}

/* Entrance Animation */
@keyframes fadeUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Stagger Animation Delay */
.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }
.process-step:nth-child(5) { animation-delay: 1s; }

/* Responsive */
@media (max-width: 768px) {
  .invodia-process h2 {
    font-size: 30px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-abd45e3 *//* ===== QUALITY SECTION ===== */
.invodia-quality {
  background: #ffffff;
  padding: 80px 20px;
  color: #1a1a1a;
}

/* Container */
.quality-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Content */
.quality-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.quality-content h2 span {
  color: #0072ff;
}

.quality-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

/* Points Grid */
.quality-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.quality-item {
  background: #f4f7fb;
  padding: 18px;
  border-radius: 10px;
  border-left: 4px solid #0072ff;
  transition: all 0.3s ease;
}

.quality-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.quality-item h4 {
  margin-bottom: 6px;
  font-size: 15px;
}

.quality-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Image */
.quality-image {
  width: 100%;
  height: 260px;
  background: url('https://invodiaexports.com/wp-content/uploads/2026/02/business-team-global-business-planning-working-concept-scaled.jpg') center/cover no-repeat;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ===== TABLET VIEW ===== */
@media (min-width: 768px) {
  .quality-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-image {
    height: 350px;
  }

  .quality-content h2 {
    font-size: 32px;
  }
}

/* ===== DESKTOP VIEW ===== */
@media (min-width: 1024px) {
  .quality-container {
    flex-direction: row;
    align-items: center;
  }

  .quality-content {
    flex: 1;
  }

  .quality-image {
    flex: 1;
    height: 420px;
  }

  .quality-content h2 {
    font-size: 36px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-55f5da9 *//* ===== GLOBAL STYLES ===== */
.section {
  padding: 90px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  line-height: 1.3;
}

.section-title span {
  color: #0072ff;
}

/* ===== PARTNERSHIP ===== */
.invodia-partnership {
  background: linear-gradient(180deg, #f7faff, #eef3ff);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ===== GLOBAL REACH ===== */
.invodia-global {
  background: #ffffff;
}

.global-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.global-text {
  flex: 1 1 450px;
}

.global-text p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.global-map {
  flex: 1 1 450px;
  min-height: 320px;
  border-radius: 18px;
  background: url('https://images.unsplash.com/photo-1524666041070-9d87656c25bb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  animation: floatMap 6s ease-in-out infinite;
}

@keyframes floatMap {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== VALUES ===== */
.invodia-values {
  background: linear-gradient(180deg, #f4f8ff, #ffffff);
}

.value-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.value {
  background: white;
  padding: 40px 60px;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.value:hover {
  background: #0072ff;
  color: white;
  transform: scale(1.08);
}

/* ===== CTA ===== */
.invodia-cta {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  text-align: center;
  color: white;
}

.invodia-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.invodia-cta p {
  margin-bottom: 35px;
  font-size: 16px;
  opacity: 0.95;
}

.cta-btn {
  padding: 15px 38px;
  background: white;
  color: #0072ff;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: revealAnim 1s ease forwards;
}

@keyframes revealAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  /* Cards stack nicely */
  .cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    padding: 22px;
    font-size: 14px;
  }

  /* Global section */
  .global-flex {
    flex-direction: column;
    gap: 30px;
  }

  .global-text p {
    font-size: 14px;
  }

  .global-map {
    min-height: 220px;
    width: 100%;
  }

  /* Values stack */
  .value-boxes {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .value {
    width: 100%;
    max-width: 280px;
    padding: 22px;
    font-size: 18px;
  }

  /* CTA section */
  .invodia-cta h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .invodia-cta p {
    font-size: 14px;
    padding: 0 10px;
  }

  .cta-btn {
    padding: 12px 26px;
    font-size: 14px;
  }
}/* End custom CSS */