.elementor-10 .elementor-element.elementor-element-ce93ddf{--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:-142px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-10 .elementor-element.elementor-element-3756e97{--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;}.elementor-10 .elementor-element.elementor-element-4c28e61{--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;}.elementor-10 .elementor-element.elementor-element-564828d{--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;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f8fed2d *//* ============================= */
/* HERO SECTION BASE */
/* ============================= */

.bafna-hero {
  background: linear-gradient(135deg, #050b18, #0f172a);
  color: #ffffff;
  padding: 190px 8%;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ============================= */
/* LEFT CONTENT */
/* ============================= */

.hero-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
}

.hero-left h1 {
  font-size: 60px;
  line-height: 1.05;
  font-weight: 700;
  margin: 30px 0;
}

.hero-left p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 540px;
}

/* Buttons */

.hero-buttons {
  display: flex;
  gap: 25px;
  margin-bottom: 60px;
}

.btn-primary {
  background: #2563eb;
  padding: 14px 30px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #2563eb;
  padding: 12px 28px;
  border-radius: 40px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #2563eb;
  color: #fff;
}

/* Stats */

.hero-stats {
  display: flex;
  gap: 60px;
}

.stat h3 {
  font-size: 36px;
  margin-bottom: 6px;
  color: #3b82f6;
}

.stat span {
  font-size: 14px;
  color: #94a3b8;
}

/* ============================= */
/* ANIMATED HEADING */
/* ============================= */

.animated-heading span {
  display: inline-block;
  opacity: 0.3;
}

/* Word Glow Animation */
@keyframes glowWord {
  0% {
    opacity: 0.3;
    text-shadow: none;
  }
  40% {
    opacity: 1;
    text-shadow:
      0 0 12px rgba(255, 200, 80, 0.9),
      0 0 25px rgba(255, 140, 0, 0.8),
      0 0 50px rgba(255, 140, 0, 0.6);
  }
  100% {
    opacity: 0.3;
    text-shadow: none;
  }
}

.animated-heading span:nth-child(1) { animation: glowWord 6s infinite 0s; }
.animated-heading span:nth-child(2) { animation: glowWord 6s infinite 1s; }
.animated-heading span:nth-child(3) { animation: glowWord 6s infinite 2s; }
.animated-heading span:nth-child(4) { animation: glowWord 6s infinite 3s; }
.animated-heading span:nth-child(5) { animation: glowWord 6s infinite 4s; }

/* ============================= */
/* RIGHT SIDE MAP */
/* ============================= */

.hero-right {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animated Sunlight Glow */
.map-sun-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle at 30% 40%, 
    rgba(255, 200, 80, 0.9),
    rgba(255, 140, 0, 0.5),
    rgba(0,0,0,0) 65%);
  filter: blur(90px);
  z-index: 1;
  animation: sunlightPulse 6s ease-in-out infinite;
}

/* Sunlight Animation */
@keyframes sunlightPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* Map Wrapper */

.map-wrapper {
  position: relative;
  width: 600px;
  max-width: 100%;
  z-index: 2;
}

/* White Map for Dark BG */

.world-map {
  width: 100%;
  filter: invert(1) brightness(0);
}

/* Export Dots */

.map-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Dot Pulse */

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); /* Red start */
  }
  70% {
    box-shadow: 0 0 0 25px rgba(239, 68, 68, 0); /* Wider spread */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* Labels */

.map-point span {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Country Positions */

.usa { top: 32%; left: 20%; }
.uk { top: 26%; left: 46%; }
.canada { top: 22%; left: 22%; }
.mexico { top: 40%; left: 18%; }
.europe { top: 30%; left: 50%; }
.middleeast { top: 39%; left: 57%; }
.eastafrica { top: 55%; left: 57%; }
.westafrica { top: 52%; left: 48%; }

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:991px){
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .map-wrapper {
    margin-top: 50px;
  }

  .hero-left h1 {
    font-size: 42px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-ce93ddf */.elementor-10 .elementor-element.elementor-element-ce93ddf {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-24ade00 *//* ========================= */
/* SECTION BASE */
/* ========================= */

.about-section {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  padding: 120px 8%;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ========================= */
/* TEXT SIDE */
/* ========================= */

.about-text {
  width: 50%;
}

.about-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Animated Underline */

.underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  margin-bottom: 30px;
  animation: expandLine 2s ease forwards;
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 80px; }
}

.about-text p {
  font-size: 17px;
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Button */

.about-btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

/* ========================= */
/* IMAGE SIDE */
/* ========================= */

.about-image {
  width: 50%;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 6s ease;
}

/* Slow Zoom Effect */

.image-wrapper:hover img {
  transform: scale(1.08);
}

/* Floating Animation */

.image-wrapper {
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ========================= */
/* SCROLL FADE ANIMATION */
/* ========================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.4s; }
.fade-up:nth-child(3) { animation-delay: 0.6s; }
.fade-up:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:991px){
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .underline {
    margin: 20px auto;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-93df6c5 *//* ============================= */
/* SECTION BASE */
/* ============================= */

.mission-vision-wrapper {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 120px 8%;
  position: relative;
  overflow: hidden;
}

/* ============================= */
/* DECORATIVE LINES */
/* ============================= */

.mission-vision-wrapper .line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #2563eb 20%,
    #2563eb 80%,
    transparent 100%
  );
  opacity: 0.25;
  z-index: 1;
}

.left-line { left: 30px; }
.right-line { right: 30px; }

/* Moving Light Effect */
.mission-vision-wrapper .line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(37,99,235,0),
    rgba(37,99,235,0.8),
    rgba(37,99,235,0)
  );
  animation: moveLineLight 4s linear infinite;
}

@keyframes moveLineLight {
  0% { top: -80px; }
  100% { top: 100%; }
}

/* ============================= */
/* CONTAINER */
/* ============================= */

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ============================= */
/* BLOCK LAYOUT */
/* ============================= */

.mv-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 120px;
}

/* ============================= */
/* TEXT */
/* ============================= */

.mv-text {
  width: 60%;
}

.mv-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
  line-height: 1.3;
}

.mv-text span {
  color: #2563eb;
}

.mv-text p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ============================= */
/* SIDE ICON */
/* ============================= */

.mv-side-icon {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-side-icon i {
  font-size: 130px;
  color: #2563eb;
  opacity: 0.08;
  animation: floatSideIcon 6s ease-in-out infinite;
  transition: 0.4s ease;
}

@keyframes floatSideIcon {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.mv-side-icon i:hover {
  opacity: 0.18;
  transform: scale(1.05);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:991px){

  .mission-vision-wrapper {
    padding: 80px 6%;
  }

  .mv-block {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    margin-bottom: 80px;
  }

  .mv-text,
  .mv-side-icon {
    width: 100%;
  }

  .mv-side-icon {
    display: none; /* Hide icons mobile */
  }

  .mission-vision-wrapper .line {
    display: none;
  }

  .mv-text h2 {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-20e93ff */.products-section {
  position: relative;
  background: #ffffff;
  padding: 10px 20px;
  overflow: hidden;
}

/* Background Glow */
.products-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  bottom: -300px;
  left: -300px;
  background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
  animation: bgFloat 15s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes bgFloat {
  0% { transform: translate(0,0); }
  100% { transform: translate(200px,150px); }
}

.products-section .container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 38px;
  color: #1e3a8a;
}

.section-header .underline {
  width: 70px;
  height: 4px;
  background: #3b82f6;
  margin: 15px auto 20px;
  border-radius: 5px;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.product-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

/* Hover */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(59,130,246,0.18);
}

/* Icon Animation */
.product-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-564828d */.mission-vision1 {
  position: relative;
  background: transparent;
  padding: 10px 20px;
  overflow: hidden;
  z-index: 1;
}

/* Blue Sunlight Glow */
.mission-vision1::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  top: -300px;
  left: -300px;
  background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 65%);
  animation: blueSunMove 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.mission-vision1::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  bottom: -300px;
  right: -300px;
  background: radial-gradient(circle, rgba(59,130,246,0.20) 0%, transparent 70%);
  animation: blueSunMove2 14s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Movement Animation */
@keyframes blueSunMove {
  0% {
    transform: translate(0,0);
  }
  100% {
    transform: translate(200px,150px);
  }
}

@keyframes blueSunMove2 {
  0% {
    transform: translate(0,0);
  }
  100% {
    transform: translate(-150px,-120px);
  }
}

/* Keep Content Above Glow */
.mission-vision1 .container {
  position: relative;
  z-index: 2;
}/* End custom CSS */