.elementor-1037 .elementor-element.elementor-element-3ec3fbe{--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-1037 .elementor-element.elementor-element-4200f7d{--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-1037 .elementor-element.elementor-element-14d91bb{--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-1037 .elementor-element.elementor-element-7bbd5e3{--display:flex;--padding-top:120px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}@media(max-width:1024px){.elementor-1037 .elementor-element.elementor-element-7bbd5e3{--padding-top:60px;--padding-bottom:60px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-f7e56ac *//* Section Wrapper */
.about-section {
  padding: 80px 5%;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Side */
.about-graphics {
  flex: 1;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

#network {
  position: absolute;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  z-index: 0;
}

/* Floating Shapes */
.shape {
  position: absolute;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}

.shape.circle {
  width: 120px;
  height: 120px;
  background: #0099cc;
  border-radius: 50%;
  top: 20%;
  left: 15%;
  box-shadow: 0 0 20px rgba(0,153,204,0.6);
}

.shape.square {
  width: 90px;
  height: 90px;
  background: #00bfff;
  top: 65%;
  left: 50%;
  transform: rotate(25deg);
  animation-delay: 2s;
  box-shadow: 0 0 15px rgba(0,191,255,0.5);
}

.shape.hexagon {
  width: 100px;
  height: 55px;
  background: #66c2e0;
  top: 35%;
  right: 20%;
  animation-delay: 4s;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  box-shadow: 0 0 15px rgba(102,194,224,0.5);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Right Content */
.about-content {
  flex: 1;
  z-index: 2;
}

.about-subtitle {
  color: #0099cc;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #111;
}

.about-title span {
  color: #0099cc;
}

.about-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-points .point {
  margin-bottom: 20px;
}

.about-points h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.about-points p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Button */
.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0099cc;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,153,204,0.6);
  animation: pulse 2s infinite;
}

.contact-btn:hover {
  background: #0077aa;
  box-shadow: 0 0 25px rgba(0,153,204,0.8), 0 0 40px rgba(0,153,204,0.5);
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(0,153,204,0.6); }
  50% { box-shadow: 0 0 25px rgba(0,153,204,0.9), 0 0 40px rgba(0,153,204,0.5); }
  100% { box-shadow: 0 0 10px rgba(0,153,204,0.6); }
}

/* Responsive */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-graphics {
    order: 2;
    width: 100%;
    min-height: 300px;
  }

  .about-content {
    order: 1;
    width: 100%;
  }

  .about-title {
    font-size: 26px;
  }

  .about-text, 
  .about-points p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .about-title {
    font-size: 22px;
  }

  .shape.circle { width: 80px; height: 80px; }
  .shape.square { width: 60px; height: 60px; }
  .shape.hexagon { width: 70px; height: 40px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e2418f4 *//* Wrapper */
.nm-what-we-do {
  padding: 60px 20px;
  background: #f9f9f9;
  overflow: hidden;
}

/* Section Title */
.nm-section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
  font-weight: bold;
}

/* Card Container */
.nm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.nm-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s forwards;
}

.nm-card:nth-child(1) { animation-delay: 0.2s; }
.nm-card:nth-child(2) { animation-delay: 0.4s; }
.nm-card:nth-child(3) { animation-delay: 0.6s; }

.nm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
}

/* Icons */
.nm-icon {
  font-size: 40px;
  margin-bottom: 15px;
  text-align: center;
}
.icon-app { color: #3b82f6; }       /* Blue */
.icon-ai { color: #10b981; }        /* Green */
.icon-consultancy { color: #f59e0b; } /* Orange */

/* Card Headings */
.nm-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
  text-align: center;
}

.nm-card h4 {
  font-size: 18px;
  margin: 15px 0 10px;
  color: #333;
}

/* Card Text */
.nm-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* List Styles */
.nm-card ul {
  padding-left: 20px;
  margin: 0;
}

.nm-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .nm-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nm-cards {
    grid-template-columns: 1fr;
  }
}
.nm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
  border: 2px solid #0099cc;
  background: #e6f7fb;
}

.nm-card:hover h3,
.nm-card:hover h4,
.nm-card:hover p,
.nm-card:hover ul li {
  color: #0099cc;
}

.nm-card:hover .nm-icon {
  color: #0099cc;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-157b020 *//* Section Wrapper */
.why-nmi {
  padding: 60px 20px;
  background: #f9f9f9;
}

/* Flexbox Layout */
.nmi-container {
  display: flex;
  align-items: center; /* vertically center text + image */
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Left Column */
.nmi-text {
  flex: 1;
}

.nmi-text h2 {
  font-size: 40px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.nmi-text h2 span {
  color: #0099cc;
}

.nmi-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nmi-list li {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.nmi-list i {
  color: #0099cc;
  font-size: 20px;
  margin-top: 2px;
}

/* Right Column */
.nmi-image {
  flex: 1;
  text-align: right;
}

.nmi-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.nmi-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px) {
  .nmi-container {
    flex-direction: column;
    text-align: center;
  }

  .nmi-text {
    text-align: center;
  }

  .nmi-image {
    text-align: center;
    margin-top: 25px;
  }
}/* End custom CSS */