 /* === Section Wrapper === */
    
    :root {
      --iec-bg: linear-gradient(to right, #1dae31, #275b25);
      --iec-neon1: #00f6ff;
      --iec-neon2: #00ffa2;
      --iec-text: #dffcff;
    }

    body {
      margin: 0;
      background: var(--iec-bg);
      font-family: "Comfortaa", sans-serif;
      color: var(--iec-text);
      overflow-x: hidden;
    }
    a, p, li, div, h1, h2, h3, h4, h5, span, div{
      font-family: "Comfortaa", sans-serif!important;

    }
    .navbar{
        background:linear-gradient(418deg, rgb(33 149 66), rgb(44 152 83 / 97%), rgb(79 213 67 / 78%));
        color: white;
        padding-top: 20px;
    padding-bottom: 20px;
    }
    .nav-item a{
        color: white;
        font-size: 15px;
    }
    .nav-item a.active{
        font-size: 16px;
    color: #fff !important;
    font-weight: 900;
    }
    .nav-link:focus, .nav-link:hover{
        color: #00f6ff!important;

    }
 .iec-section {
          position: relative;
    padding: 25px 4%;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(0, 255, 255, .06), transparent 60%), radial-gradient(circle at 80% 80%, rgba(0, 255, 160, .06), transparent 60%);
    background: #fff;
    }

    /* animated grid background */
    .iec-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(to right, rgba(0,255,255,.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,255,255,.08) 1px, transparent 1px);
      background-size: 50px 50px;
      opacity: .15;
      animation: iec-gridShift 30s linear infinite;
    }
    @keyframes iec-gridShift {
      0% { background-position: 0 0; }
      100% { background-position: 200px 200px; }
    }

    /* === Heading === */
    .iec-heading {
      font-family: "Comfortaa", sans-serif;
      font-size: clamp(24px, 5vw, 42px);
      text-align: center;
      color: var(--iec-neon1);
      text-shadow: 0 0 15px var(--iec-neon1), 0 0 35px rgba(0,255,255,.6);
      margin-bottom: 40px;
    }

    /* === Content Box === */
    .iec-box {
      /* max-width: 900px; */
      margin: auto;
      padding: 30px 35px;
      border-radius: 16px;
      background: #279846;
      border: 1px solid rgba(0,255,255,.2);
      backdrop-filter: blur(10px);
      box-shadow: 0 0 20px rgba(0,255,255,.08);
      position: relative;
      overflow: hidden;

    }

    .iec-box::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: 16px;
      border: 2px solid transparent;
      border-image: linear-gradient(120deg, var(--iec-neon1), var(--iec-neon2)) 1;
      opacity: 0.4;
      animation: iec-glow 4s linear infinite;
    }

    @keyframes iec-glow {
      0%,100% { opacity: .4; }
      50% { opacity: .8; }
    }
    #roadmapPath{
        position: relative;
        top: 53px;
        left: -23px;
    }

    .iec-box p {
      font-size: 15px;
      line-height: 1.7;
      color: #fff;
      margin-bottom: 20px;
    }

    /* subtle futuristic divider */
    .iec-divider {
      height: 2px;
      margin: 30px auto;
      max-width: 200px;
      background: linear-gradient(90deg, transparent, var(--iec-neon1), transparent);
      animation: iec-scan 2.5s linear infinite;
    }
    @keyframes iec-scan {
      0% { opacity: 0.3; transform: scaleX(0.5); }
      50% { opacity: 1; transform: scaleX(1); }
      100% { opacity: 0.3; transform: scaleX(0.5); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .iec-box { padding: 20px; }
      .iec-box p { font-size: 1rem; }
    }

    :root {
      --wen-bg: white;
      --wen-neon1: #00f6ff;
      --wen-neon2: #00ffa2;
      --wen-text: #e0faff;
    }

    body {
      margin: 0;
      font-family: "Comfortaa", sans-serif;
      background: var(--wen-bg);
      color: var(--wen-text);
      overflow-x: hidden;
    }

    .wen-section {
      position: relative;
      padding: 34px 10%;
      overflow: hidden;
      background:linear-gradient(418deg, rgb(33 149 66), rgb(44 152 83 / 97%), rgb(79 213 67 / 78%));
    }

    /* animated grid overlay */
    .wen-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(to right, rgba(0,255,255,.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,255,255,.1) 1px, transparent 1px);
      background-size: 60px 60px;
      opacity: .15;
      animation: wen-gridShift 25s linear infinite;
    }
    @keyframes wen-gridShift {
      0% { background-position: 0 0; }
      100% { background-position: 200px 200px; }
    }

    .wen-heading {
      font-family: "Comfortaa", sans-serif;
      font-size: clamp(26px, 5vw, 42px);
      text-align: center;
      color: var(--wen-neon1);
      text-shadow: 0 0 15px var(--wen-neon1), 0 0 40px rgba(0,255,255,.6);
      margin-bottom: 30px;
      position: relative;
      z-index: 1;
    }

    .wen-sub {
      text-align: center;
      color: #aeefff;
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.05rem;
      position: relative;
      z-index: 1;
    }

    /* list container with glowing spine */
    .wen-list {
      display: grid;
      gap: 40px;
      max-width: 800px;
      margin: auto;
      position: relative;
      z-index: 1;
      padding-left: 60px;
    }

    .wen-list::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 25px;
      width: 4px;
      background: white;
      border-radius: 2px;
      overflow: hidden;
    }

    /* flowing glow effect on spine */
    .wen-list::after {
      content: "";
      position: absolute;
      left: 25px;
      top: 0;
      bottom: 0;
      width: 4px;
      background: white;
      filter: blur(2px);
      animation: wen-flow 3s linear infinite;
    }
    @keyframes wen-flow {
      0% { top: -30%; }
      100% { top: 130%; }
    }

    /* each item capsule */
    .wen-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 22px;
      border-radius: 12px;
      background: rgba(0,60,90,.25);
      border: 1px solid rgba(0,255,255,.25);
      backdrop-filter: blur(6px);
      color: #c7f8ff;
      font-size: 1rem;
      line-height: 1.4;
      transition: .3s;
      position: relative;
    }

    /* connector line from spine */
    .wen-item::before {
      content: "";
      position: absolute;
      left: -35px;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 2px;
      background: white;
      box-shadow: 0 0 10px white;
      overflow: hidden;
    }

    /* flowing pulse on connector line */
    .wen-item::after {
      content: "";
      position: absolute;
      left: -35px;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 2px;
      background: linear-gradient(90deg, transparent, white, transparent);
      animation: wen-connectorFlow 2s linear infinite;
    }
    @keyframes wen-connectorFlow {
      0% { left: -35px; opacity: 0; }
      30% { opacity: 1; }
      100% { left: -5px; opacity: 0; }
    }

    /* glowing dot on spine */
    .wen-dot {
      position: absolute;
      left: -45px;
      top: 50%;
      transform: translateY(-50%);
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: white;
      box-shadow: 0 0 12px var(--wen-neon1), 0 0 25px rgba(0,255,255,.7);
      animation: wen-pulseDot 2.5s infinite;
    }
    .wen-item{
        color:white!important;
        font-weight:900;
    }
    .wen-sub{
        color:white!important;
    }

    @keyframes wen-pulseDot {
      0%,100% { transform: translateY(-50%) scale(1); opacity: 1; }
      50% { transform: translateY(-50%) scale(1.4); opacity: .6; }
    }

    .wen-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 18px rgba(0,255,255,.25);
      border-color: rgba(0,255,255,.5);
    }

    /* icon style */
    .wen-icon {
      flex: 0 0 26px;
      height: 26px;
      fill: none;
      stroke: White!important;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 6px rgba(0,255,255,.6));
    }

    /* === Animations per icon === */
    .wen-icon-lightning path { animation: wen-flicker 1.2s infinite; }
    @keyframes wen-flicker {
      0%, 19%, 21%, 23%, 80%, 100% { stroke: var(--wen-neon1); opacity: 1; }
      20%, 22% { stroke: var(--wen-neon2); opacity: .4; }
    }

    .wen-icon-shield circle {
      animation: wen-pulse 2.5s infinite;
      transform-origin: center;
    }
    @keyframes wen-pulse {
      0%,100% { r:2; opacity:1; }
      50% { r:3.5; opacity:.5; }
    }

    .wen-icon-wifi path {
      stroke-dasharray: 40;
      stroke-dashoffset: 40;
      animation: wen-signal 3s infinite;
    }
    @keyframes wen-signal { to { stroke-dashoffset: 0; } }

    .wen-icon-gear {
      animation: wen-rotate 6s linear infinite;
      transform-origin: center;
    }
    @keyframes wen-rotate { to { transform: rotate(360deg); } }

    .wen-icon-cloud path:nth-child(1) {
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
      animation: wen-scan 4s linear infinite;
    }
    @keyframes wen-scan { to { stroke-dashoffset: 0; } }

    /* responsive */
    @media (max-width: 600px) {
      .wen-list { padding-left: 50px; }
      .wen-item { font-size: 0.95rem; }
    }

        .roadmap-section {
          padding: 88px 1%;
          text-align: center;
          position: relative;
          background: #fff;
    }

    .roadmap-title {
      font-size: 32px;
      margin-bottom: 40px;
      font-weight: bold;
      color: #00f6ff;
    }

    .roadmap-svg {
      width: 100%;
      max-width: 1200px;
      margin: auto;
      display: block;
      margin-left: 10px;
    }

    .road {
      fill: none;
      stroke: #444;
      stroke-width: 50;
      stroke-linecap: round;
    }

    .road-dash {
      fill: none;
      stroke: #f4c542;
      stroke-width: 6;
      stroke-dasharray: 20 25;
      stroke-linecap: round;
      animation: dashmove 4s linear infinite;
    }

    @keyframes dashmove {
      to { stroke-dashoffset: -45; }
    }

    /* Plane */
    .plane {
      fill: #00f5fe;
      filter: drop-shadow(0 0 5px #00f5fe);
    }

    .plane-motion {
      position: absolute;
      top: 0;
      left: 0;
      offset-path: path("M80 400 Q300 120, 600 300 T1120 200");
      offset-rotate: auto;
      animation: movePlane 40s linear infinite;
    }

    @keyframes movePlane {
      0%, 5%   { offset-distance: 0%; }
      15%, 20% { offset-distance: 14%; }
      30%, 35% { offset-distance: 28%; }
      45%, 50% { offset-distance: 42%; }
      60%, 65% { offset-distance: 57%; }
      75%, 80% { offset-distance: 71%; }
      90%, 95% { offset-distance: 85%; }
      100%     { offset-distance: 100%; }
    }

    /* Milestones */
    .milestone {
      position: absolute;
      text-align: center;
      transform: translate(-50%, -50%);
      width: 163px;
    }

    .milestone .circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #1ea530;
      box-shadow: 0 0 8px rgba(0,0,0,0.15);
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #00f5fe;
    }

    .milestone p {
      margin-top: 8px;
      font-size: 14px;
      color: black;
      font-weight: 900;
    }

    .active .circle {
      background: #fff;
      color: white;
      box-shadow: 0 0 18px #00f5fe;
      transform: scale(1.15);
    }

    .sectoral-focus {
    padding: 70px 5%;
    text-align: center;
    background: linear-gradient(418deg, rgb(33 149 66), rgb(44 152 83 / 97%), rgb(79 213 67 / 78%));
    color: white;
    position: relative;
    overflow: hidden;
  }

  .sector-title {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 50px;
    text-shadow: 0 0 15px rgba(255,255,255,0.4);
  }

  .sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
  }

  .sector-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    /* padding: 30px 20px; */
    backdrop-filter: blur(12px);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  /* Glow hover */
  .sector-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #f4c542, transparent, #f05a28, transparent);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
  }

  .sector-card:hover::before {
    opacity: 0.6;
  }

  .sector-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 20px rgba(244,197,66,0.6);
  }

  @keyframes rotate {
    100% {
      transform: rotate(360deg);
    }
  }

  .sector-img {
    object-fit: contain;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }

  .sector-card p {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4em;
    color: #fff;
    position: relative;
    z-index: 1;
  }

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

  @media (max-width: 600px) {
    .sector-grid {
      grid-template-columns: 1fr;
    }
    .sector-title {
      font-size: 24px;
    }
  }

  .meet-section {
      padding: 80px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
      /* background: linear-gradient(135deg, #0d1b2a, #203a43, #2c5364); */
    }

    /* Animated background lines */
    .meet-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: movegrid 20s linear infinite;
      z-index: 0;
    }
    @keyframes movegrid {
      from { background-position: 0 0; }
      to { background-position: 60px 60px; }
    }

    .meet-title {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
      text-shadow: 0 0 15px rgba(255,255,255,0.3);
    }

    .meet-subtitle {
      font-size: 16px;
      margin-bottom: 60px;
      color: #000;
      position: relative;
      z-index: 1;
    }

    .meet-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 40px;
      position: relative;
      z-index: 1;
      justify-items: center;
    }

    .meet-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      transition: transform 0.4s;
    }

    .circle {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      border: 2px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      position: relative;
      transition: 0.4s;
      box-shadow: 0 0 12px rgba(0,0,0,0.5);
    }

    .circle img {
          width: 110px;
    height: 110px;
    border-radius: 50%;
    }

    .meet-card p {
      font-size: 15px;
      font-weight: 800;
      max-width: 150px;
      line-height: 1.4em;
      color: black;
    }

    .meet-card:hover .circle {
      border-color: #f4c542;
      box-shadow: 0 0 20px #f4c542, 0 0 40px rgba(244,197,66,0.6);
      transform: scale(1.1);
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .meet-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .meet-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .meet-grid { grid-template-columns: 1fr; }
      .meet-title { font-size: 26px; }
    }
    .edge-revolution {
    position: relative;
    padding: 80px;
    text-align: center;
    background: linear-gradient(418deg, rgb(33 149 66), rgb(44 152 83 / 97%), rgb(79 213 67 / 78%));
    color: #fff;
    overflow: hidden;
  }

  /* Animated wave / mesh background */
  .edge-revolution::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/cubes.png");
    opacity: 0.08;
    animation: meshmove 20s linear infinite;
  }
  @keyframes meshmove {
    from { background-position: 0 0; }
    to { background-position: 300px 300px; }
  }

  .edge-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
  }
.wen-flicker animation {
    color:white;
}

  .edge-title {
    font-size: 27px;
    line-height: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color:white;
    text-shadow: 0 0 20px 0 0 20px rgb(81 78 71), 0 0 40px rgb(0 245 254);
    /*animation: glowtext 3s ease-in-out infinite alternate;*/
  }
  @keyframes glowtext {
    from { text-shadow: 0 0 10px rgb(0 245 254); }
    to { text-shadow: 0 0 25px rgb(0 245 254), 0 0 45px rgb(56, 175, 179); }
  }

  .edge-subtitle {
    font-size: 16px;
    line-height: 1.6em;
    color: #ddd;
    margin-bottom: 40px;
  }

  .edge-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, #f4c542, #f05a28);
    color: #0d1b2a;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(244,197,66,0.5);
    transition: 0.4s;
  }
  .edge-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(244,197,66,0.9), 0 0 50px rgba(240,90,40,0.7);
  }
  .ind-p{
    font-size: 21px!important;
  }
  /* Responsive */
  @media (max-width: 768px) {
    .edge-title { font-size: 28px; }
    .edge-subtitle { font-size: 16px; }
  }

  .schneider-story {
    /* padding: 80px 10%; */
    padding-top: 40px;
    padding-bottom: 40px;
    background: linear-gradient(418deg, rgb(33 149 66), rgb(44 152 83 / 97%), rgb(79 213 67 / 78%));
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  /* Animated glowing background */
  .schneider-story::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 25%, rgba(244,197,66,0.12), transparent 40%),
                radial-gradient(circle at 75% 70%, rgba(240,90,40,0.12), transparent 40%);
    animation: backgroundShift 12s ease-in-out infinite alternate;
    z-index: 0;
  }
  @keyframes backgroundShift {
    from { background-position: 25% 25%, 75% 70%; }
    to { background-position: 35% 35%, 65% 60%; }
  }

  .story-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: auto;
  }

  .story-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
    line-height: 1.3em;
  }

  .story-text {
    font-size: 15px;
    line-height: 1.7em;
    color: #ddd;
    margin-bottom: 20px;
    text-align: justify;
  }

  .highlight {
    color: white;
    font-weight: 900;
  }

  .emphasis {
    color: white;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(240,90,40,0.6);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .story-title {
      font-size: 26px;
    }
    .story-text {
      font-size: 16px;
    }
  }
  .schneider-story-1{
    background: #fff;
  }

.story-text-1{
  color: black;
}
.hig{
  color: black!important;
  font-style: 900;
}
.meet-section{
  background: #fff;
}
  #footer {
   background: linear-gradient(418deg, rgb(33 149 66), rgb(44 152 83 / 97%), rgb(79 213 67 / 78%));
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 17px;
}
#footer .footer-top {
   background:linear-gradient(418deg, rgb(33 149 66), rgb(44 152 83 / 97%), rgb(79 213 67 / 78%)); 
  padding: 60px 0 30px 0;
  border-bottom: 1px solid #fff;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info img {
  height: 100px;
  margin-bottom: 10px;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px dotted #fff;
}
#footer .footer-top .social-links a {
  display: inline-block;
  background: #fff;
  color: #2a984f;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-email a{
  color: black;
}
#contact {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  background:url(../images/con-ai.jpg);
  background-position: center;
  /* background-attachment: fixed; */
  background-size: cover;
  /* background-attachment: fixed; */
}


#back-to-top a {
  width: 50px;
  height: 50px;
  background-color: pink;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Initially hidden */
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease;
}

#contact a, #contact p, #contact li{
  color: white;
}
.footer-links p{
  color: white;
  font-size: 16px;
}
  .edge-roadmap-mobile {
    padding: 60px 8%;
    background: linear-gradient(418deg, rgb(33 149 66), rgb(44 152 83 / 97%), rgb(79 213 67 / 78%));
    color: #fff;
    background: #b0d1d7;
  }

  .edge-roadmap-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 12px rgba(255,255,255,0.4);
  }

  .edge-timeline {
    position: relative;
    margin-left: 30px;
    padding-left: 20px;
  }

  /* Vertical glowing line */
  .edge-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #2c9950, #2c9950);
    box-shadow:0 0 15px rgb(99 202 102);
  }

  .edge-milestone {
    margin-bottom: 50px;
    position: relative;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }

  .edge-dot {
    position: absolute;
    left: -42px;
    top: -5px;
    width: 28px;
    height: 28px;
    background: #f4c542;
    color: #000;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(244,197,66,0.8);
    transform: scale(0.7);
    transition: all 0.4s ease;
  }

  .edge-milestone p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4em;
    color: black;
    font-weight: 800;
  }

  /* Active milestone */
  .edge-milestone.active {
    opacity: 1;
    transform: translateY(0);
  }
  .edge-milestone.active .edge-dot {
    transform: scale(1.2);
    background: #2c9950;
    color: #fff;
    box-shadow: 0 0 20px #f05a28, 0 0 30px #2c9950;
  }

  /* Plane */
  .edge-plane {
    position: absolute;
    left: -70px;
    font-size: 28px;
    transition: top 1s ease-in-out;
  }
#m9{
    left: 1206px;
    top: 81px;
}
#m4{
    left: 524.784px;
    top: 243.571px;
}
#m5{
    left: 675.217px;
    top: 307.429px;
}
#m7{
    left: 975.977px;
    top: 269.968px;
}
  /* Hide on desktop */
  @media (min-width: 993px) {
    .edge-roadmap-mobile { display: none; }
  }
   .d-desk{display: block;}
      .d-mob{display: none;}
  @media (max-width: 768px) {
      .d-desk{display: none;}
      .d-mob{display: block;}
      .odr{
        order: 2;
        margin-top: 30px;
      }
      .edge-title {
        font-size: 24px;
        line-height: 35px;
    }
    .ind-p {
    font-size: 17px !important;
}
.edge-revolution{
padding: 14px;
}
.iec-section {
          position: relative;
    padding: 40px 4%;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(0, 255, 255, .06), transparent 60%), radial-gradient(circle at 80% 80%, rgba(0, 255, 160, .06), transparent 60%);
    background: #fff;
    }
    }
    .navbar-toggler{
        background: white;
    }
    .about-low-area {
    padding-top: 40px;
    padding-bottom: 40px;
     background:#fff!important;
     border: 2px solid #ffff;
    border-radius: 10px;
    position: relative;
}
.edge-1{
  color: black;
}
.plane{
    fill:black;
}
.event-details-block-bbsr-2026 {
  max-width: 520px;
  margin: 20px;
}

.event-title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.event-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #279749;
  position: relative;
    left: 56px;
}

.event-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.event-row:last-child {
  margin-bottom: 0;
}

.event-icon {
  font-size: 18px;
  margin-right: 10px;
}

.event-row p {
  margin: 0;
  color: #444;
  font-size: 15px;
}
 @media (max-width: 768px) {
     .event-card {
     position: relative;
    left: -27px;
     }
 }
 
.novatrix-focus-section{
    padding:40px;
    background:
        linear-gradient(180deg,#ffffff 0%,#f5f7fc 100%);
    font-family:'Inter',sans-serif;
}

/* =========================================
   CONTAINER
========================================= */

.novatrix-focus-container{
    max-width:1240px;
    margin:auto;
}

/* =========================================
   HEADER
========================================= */

.novatrix-focus-header{
    text-align:center;
}

.novatrix-focus-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:100px;
    background:#edf3ff;
    color:#3468ff;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.novatrix-focus-title{
    margin:26px 0 0;
    font-size:56px;
    line-height:1.1;
    font-weight:800;
    color:#0f172a;
    letter-spacing:-2px;
}

/* =========================================
   GRID
========================================= */

.novatrix-focus-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* =========================================
   CARD
========================================= */

.novatrix-focus-card{
        background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 15px 45px rgba(15, 23, 42, .05);
    transition: all .4s ease;
}

.novatrix-focus-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 25px 60px rgba(52,104,255,.12);
}

/* =========================================
   IMAGE
========================================= */

.novatrix-focus-image-wrap{
    position:relative;
    height:172px;
    overflow:hidden;
}

.novatrix-focus-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.novatrix-focus-card:hover .novatrix-focus-image-wrap img{
    transform:scale(1.08);
}

/* =========================================
   CONTENT
========================================= */

.novatrix-focus-content{
    padding:14px;
}

.novatrix-focus-content h3{
    margin:0 0 20px;
    color:#0f172a;
    font-size:15px;
    line-height:1.4;
    font-weight:700;
}

.novatrix-focus-content ul{
    margin:0;
    padding:0;
    list-style:none;
}

.novatrix-focus-content ul li{
    position:relative;
    padding-left:24px;
    margin-bottom:5px;

    color:#667085;
    font-size:13px;
    line-height:1.8;
    font-weight:500;
}

/* =========================================
   BULLETS
========================================= */

.novatrix-focus-content ul li::before{
    content:'';
    position:absolute;
    left:0;
    top:4px;

    width:9px;
    height:9px;

    border-radius:50%;

    background:
        linear-gradient(135deg, #279846, #279846);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .novatrix-focus-grid{
        grid-template-columns:1fr;
    }

    .novatrix-focus-title{
        font-size:42px;
    }

}

@media(max-width:767px){

    .novatrix-focus-section{
        padding:13px 18px;
    }

    .novatrix-focus-title{
        font-size:34px;
    }

    .novatrix-focus-image-wrap{
        height:220px;
    }

    .novatrix-focus-content{
        padding:26px;
    }

    .novatrix-focus-content h3{
        font-size:15px;
    }

    .novatrix-focus-content ul li{
        font-size:13px;
    }

}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: center;
    }
}
