
 .profile-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 5px 5px rgb(162 142 243 / 8%);
    overflow: hidden;
    max-width: 410px;
    min-width: 300px;
    transition: box-shadow 0.3s, transform 0.3s;
 }

 .profile-card:hover {
    /* box-shadow: 0 24px 20px rgba(52, 152, 219, 0.18), 0 6px 18px rgba(0, 0, 0, 0.12); */
    transform: translateY(-7px) scale(1.03);
 }

 .card-img {
    flex: 0 0 110px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #077dba 0%, #077dba 100%);
 }

 .card-img img {
    width: 80px!important;
    height: 80px!important;
    border-radius: 50%;
    margin: 12px;
    box-shadow: 0 4px 16px #c0d9ec;
    object-fit: cover;
    border: 3px solid #f0f6ff;
    background: #fff;
 }

 .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.1rem;
    text-align: left;
 }

 .card-content h3 {
    margin: 0 0 0.3rem 0;
    color: #21243d;
    font-weight: 700;
    font-size: 1.18rem;
 }

 .role {
    color: #4e5d78;
    font-size: 1.03rem;
 }

 .company {
    color: #8c98af;
    font-size: 0.97rem;
 }

 .company span {
    color: #2a5298;
    font-weight: 600;
 }

 @media (max-width: 600px) {
    .profile-card {
       flex-direction: column;
       align-items: center;
       min-width: unset;
       max-width: 90vw;
    }

    .card-img {
       justify-content: center;
    }

    .card-content {
       padding: 0 1.2rem 1.5rem 1.2rem;
       text-align: center;
    }
 }

         .mains {
         background: linear-gradient(135deg, #0a1929 0%, #132a3f 25%, #1e3a52 50%, #2a4d6d 75%, #365e7f 100%);
         min-height: 100vh;
         overflow-x: hidden;
         position: relative;
         font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
         padding: 60px 20px;
         }
         .mains::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background-image: 
         repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(0, 217, 255, 0.03) 30px, rgba(0, 217, 255, 0.03) 31px),
         repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(0, 217, 255, 0.03) 30px, rgba(0, 217, 255, 0.03) 31px);
         pointer-events: none;
         z-index: 1;
         }
         .mains::after {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background: radial-gradient(ellipse at top, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
         radial-gradient(ellipse at bottom, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
         pointer-events: none;
         z-index: 1;
         }
         .main-container {
         position: relative;
         z-index: 2;
         max-width: 1400px;
         margin: 0 auto;
         }
         .circuit-decoration {
         position: absolute;
         stroke: rgba(0, 217, 255, 0.4);
         stroke-width: 2;
         fill: none;
         pointer-events: none;
         filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.3));
         z-index: 1;
         }
         .circuit-left {
         top: 10%;
         width: 120px;
         height: 80%;
         }
         .circuit-right {
         right: 20px;
         top: 10%;
         width: 120px;
         height: 80%;
         }
         .header-title {
         text-align: center;
         margin-bottom: 60px;
         animation: fadeInDown 1s ease-out;
         }
         .header-title h1 {
         color: #00d9ff;
         font-size: clamp(2rem, 5vw, 3.5rem);
         font-weight: 700;
         text-shadow: 0 0 30px rgba(0, 217, 255, 0.6), 0 0 60px rgba(0, 217, 255, 0.3);
         margin-bottom: 15px;
         letter-spacing: 2px;
         }
         .header-title p {
         color: #8dd4e8;
         font-size: clamp(1rem, 2.5vw, 1.3rem);
         text-shadow: 0 0 20px rgba(141, 212, 232, 0.4);
         }
         @keyframes fadeInDown {
         from {
         opacity: 0;
         transform: translateY(-30px);
         }
         to {
         opacity: 1;
         transform: translateY(0);
         }
         }
         .timeline-wrapper {
         position: relative;
         padding: 20px;
         }
         .top-labels {
         display: flex;
         justify-content: space-around;
         margin-bottom: 80px;
         position: relative;
         flex-wrap: wrap;
         gap: 30px;
         animation: fadeIn 1s ease-out 0.3s backwards;
         }
         @keyframes fadeIn {
         from { opacity: 0; }
         to { opacity: 1; }
         }
         .label-wrapper {
         display: flex;
         flex-direction: column;
         align-items: center;
         flex: 1;
         min-width: 200px;
         animation: slideUp 0.8s ease-out backwards;
         }
         .label-wrapper:nth-child(1) { animation-delay: 0.4s; }
         .label-wrapper:nth-child(2) { animation-delay: 0.5s; }
         .label-wrapper:nth-child(3) { animation-delay: 0.6s; }
         @keyframes slideUp {
         from {
         opacity: 0;
         transform: translateY(30px);
         }
         to {
         opacity: 1;
         transform: translateY(0);
         }
         }
         .top-label {
         background: #b7e4ea;
         border-radius: 15px;
         padding: 18px 10px;
         color: #244161;
         font-weight: 600;
         font-size: clamp(0.95rem, 2vw, 1.2rem);
         box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3),
         inset 0 1px 0 rgba(255, 255, 255, 0.1);
         position: relative;
         backdrop-filter: blur(15px);
         transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         text-align: center;
         cursor: pointer;
         width: 100%;
         }
         .top-label:hover {
         transform: translateY(-5px);
         box-shadow: 0 12px 40px rgba(0, 217, 255, 0.5),
         inset 0 1px 0 rgba(255, 255, 255, 0.2);
         border-color: #00ffff;
         }
         .top-label::before {
         content: '';
         position: absolute;
         top: -2px;
         left: -2px;
         right: -2px;
         bottom: -2px;
         background: linear-gradient(45deg, #00d9ff, #0096ff);
         border-radius: 15px;
         opacity: 0;
         transition: opacity 0.4s;
         z-index: -1;
         filter: blur(15px);
         }
         .top-label:hover::before {
         opacity: 0.6;
         }
         .connector-line {
         margin: auto;
         width: 3px;
         height:160px;
         background: linear-gradient(180deg, #00d9ff, rgba(0, 217, 255, 0.3));
         margin-top: 15px;
         position: relative;
         filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.6));
         }
         .connector-line::after {
         content: '';
         position: absolute;
         bottom: -6px;
         left: 50%;
         transform: translateX(-50%);
         width: 40px;
         height: 40px;
         background-color: #fff;
         background-image: url('../images/favicon.png');
         background-repeat: no-repeat;
         background-position: center;
         background-size: 60%;
         border-radius: 50%;
         box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
         }
         .middle-section {
         display: flex;
         justify-content: space-around;
         align-items: center;
         margin-bottom: 60px;
         position: relative;
         flex-wrap: wrap;
         gap: 40px;
         animation: fadeIn 1s ease-out 0.7s backwards;
         }
         .middle-wrapper {
         display: flex;
         flex-direction: column;
         align-items: center;
         flex: 1;
         min-width: 250px;
         }
         .connector-line-top {
         width: 2px;
         height: 50px;
         background: linear-gradient(180deg, rgba(0, 217, 255, 0.3), #00d9ff);
         margin-bottom: 15px;
         filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.6));
         }
         .middle-label {
         background: #b7e4ea;
         border-radius: 15px;
         padding: 18px 35px;
         color: #244161;
         font-weight: 600;
         font-size: clamp(0.95rem, 2vw, 1.2rem);
         box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3),
         inset 0 1px 0 rgba(255, 255, 255, 0.1);
         position: relative;
         backdrop-filter: blur(15px);
         transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         text-align: center;
         cursor: pointer;
         }
         .middle-label:hover {
         transform: translateY(-5px);
         box-shadow: 0 12px 40px rgba(0, 217, 255, 0.5),
         inset 0 1px 0 rgba(255, 255, 255, 0.2);
         }
         .connector-line-bottom {
         width: 2px;
         height: 70px;
         background: linear-gradient(180deg, #00d9ff, rgba(0, 217, 255, 0.3));
         margin-top: 15px;
         filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.6));
         }
         .waveform-container {
         position: relative;
         bottom: 277px;
         z-index: -1;
         margin: 60px 0;
         animation: fadeIn 1s ease-out 1s backwards;
         }
         .waveform {
         position: absolute;
         left: 0;
         right: 0;
         top: 50%;
         transform: translateY(-50%);
         height: 100px;
         display: flex;
         align-items: center;
         justify-content: space-around;
         padding: 0 10px;
         gap: clamp(2px, 0.5vw, 4px);
         }
         .waveform-line {
         width: clamp(2px, 0.5vw, 2px);
         background: linear-gradient(180deg, #00d9ff, #0096ff);
         border-radius: 3px;
         animation: wave 2.5s ease-in-out infinite;
         box-shadow: 0 0 8px rgba(0, 217, 255, 0.6);
         transition: all 0.3s;
         }
         .waveform-line:hover {
         box-shadow: 0 0 15px rgba(0, 217, 255, 1);
         }
         @keyframes wave {
         0%, 100% { 
         height: 25px; 
         opacity: 0.4;
         background: linear-gradient(180deg, #00d9ff, #0096ff);
         }
         50% { 
         height: 80px; 
         opacity: 1;
         background: linear-gradient(180deg, #00ffff, #00d9ff);
         }
         }
         .timeline-node {
         position: absolute;
         width: clamp(50px, 8vw, 70px);
         height: clamp(50px, 8vw, 70px);
         background: radial-gradient(circle, #0a1929 0%, #1a2f42 100%);
         border: 3px solid #00d9ff;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         box-shadow: 0 0 30px rgba(0, 217, 255, 0.7),
         inset 0 0 20px rgba(0, 217, 255, 0.2);
         z-index: 10;
         top: 50%;
         transform: translateY(-50%);
         transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         cursor: pointer;
         animation: nodeAppear 0.6s ease-out backwards;
         }
         .timeline-node:nth-child(n+2):nth-child(-n+6):nth-child(2) { animation-delay: 1.1s; }
         .timeline-node:nth-child(n+2):nth-child(-n+6):nth-child(3) { animation-delay: 1.2s; }
         .timeline-node:nth-child(n+2):nth-child(-n+6):nth-child(4) { animation-delay: 1.3s; }
         .timeline-node:nth-child(n+2):nth-child(-n+6):nth-child(5) { animation-delay: 1.4s; }
         .timeline-node:nth-child(n+2):nth-child(-n+6):nth-child(6) { animation-delay: 1.5s; }
         @keyframes nodeAppear {
         from {
         opacity: 0;
         transform: translateY(-50%) scale(0);
         }
         to {
         opacity: 1;
         transform: translateY(-50%) scale(1);
         }
         }
         .timeline-node:hover {
         transform: translateY(-50%) scale(1.15);
         box-shadow: 0 0 50px rgba(0, 217, 255, 1),
         inset 0 0 30px rgba(0, 217, 255, 0.4);
         border-color: #00ffff;
         }
         .timeline-node::before {
         content: '';
         position: absolute;
         width: 100%;
         height: 100%;
         border-radius: 50%;
         border: 2px solid #00d9ff;
         animation: pulse 2s infinite;
         }
         @keyframes pulse {
         0% {
         transform: scale(1);
         opacity: 1;
         }
         100% {
         transform: scale(1.5);
         opacity: 0;
         }
         }
         .timeline-node svg {
         width: clamp(25px, 4vw, 35px);
         height: clamp(25px, 4vw, 35px);
         fill: #00d9ff;
         filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.8));
         transition: all 0.3s;
         }
         .timeline-node:hover svg {
         fill: #00ffff;
         transform: rotate(180deg);
         }
         .node-1 { left: 8%; }
         .node-2 { left: 28%; }
         .node-3 { left: 50%; transform: translate(-50%, -50%); }
         .node-4 { left: 72%; }
         .node-5 { left: 92%; }
         .bottom-stages {
         display: flex;
         justify-content: center;
         align-items: stretch;
         gap: 0;
         margin-top: 80px;
         animation: fadeIn 1s ease-out 1.6s backwards;
         flex-wrap: nowrap;
         overflow-x: auto;
         padding: 20px 0;
         }
         .stage-arrow {
         flex: 1;
         min-width: 280px;
         background: linear-gradient(135deg, rgba(0, 217, 255, 0.25) 0%, rgba(0, 150, 200, 0.15) 100%);
         border: 2px solid #00d9ff;
         padding: 30px 25px;
         position: relative;
         clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 50%, calc(100% - 35px) 100%, 0 100%);
         margin-right: -30px;
         backdrop-filter: blur(15px);
         box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3),
         inset 0 1px 0 rgba(255, 255, 255, 0.1);
         transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         cursor: pointer;
         }
         .stage-arrow:first-child {
         clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 50%, calc(100% - 35px) 100%, 0 100%, 0 0);
         border-radius: 15px 0 0 15px;
         }
         .stage-arrow:last-child {
         clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 35px 50%);
         margin-right: 0;
         border-radius: 0 15px 15px 0;
         }
         .stage-arrow:hover {
         transform: translateY(-8px) scale(1.02);
         box-shadow: 0 15px 50px rgba(0, 217, 255, 0.5),
         inset 0 1px 0 rgba(255, 255, 255, 0.2);
         z-index: 5;
         }
         .stage-arrow h6 {
         color: #00d9ff;
         font-size: clamp(0.9rem, 1.8vw, 1.1rem);
         margin-bottom: 10px;
         font-weight: 700;
         text-transform: uppercase;
         letter-spacing: 1px;
         text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
         }
         .stage-arrow p {
         color: #d0e8f0;
         font-size: clamp(0.8rem, 1.5vw, 0.95rem);
         margin: 0;
         line-height: 1.6;
         text-shadow: 0 0 10px rgba(208, 232, 240, 0.3);
         }
         
         .row1{
            position: relative;
         }
         .row2{
               position: absolute;
               top: 130px;
         }
         .row3{
             margin-top: 100px;
         }
         @media (max-width: 1200px) {
         .node-1 { left: 5%; }
         .node-2 { left: 26%; }
         .node-4 { left: 74%; }
         .node-5 { left: 95%; }
         }
         @media (max-width: 992px) {
      
         .top-labels {
         gap: 25px;
         margin-bottom: 60px;
         }
         .label-wrapper {
         min-width: 180px;
         }
         .middle-section {
         gap: 30px;
         margin-bottom: 50px;
         }
         .bottom-stages {
         flex-wrap: wrap;
         gap: 25px;
         }
          
         .stage-arrow {
         clip-path: none;
         margin-right: 0;
         width: 100%;
         min-width: 100%;
         border-radius: 15px;
         }
         .stage-arrow:first-child,
         .stage-arrow:last-child {
         clip-path: none;
         border-radius: 15px;
         }
         }
         @media (max-width: 768px) {
       
         .node-1 { left: 3%; }
         .node-2 { left: 24%; }
         .node-4 { left: 76%; }
         .node-5 { left: 97%; }
         .waveform {
         gap: 2px;
         }
         .connector-line {
         height: 50px;
         }
         .connector-line-bottom {
         height: 60px;
         }
         }
         
         /* Mobile Responsive Styles */
         @media (max-width: 576px) {
         .mains {
         padding: 30px 15px;
         }
         
         .circuit-left,
         .circuit-right {
         display: none;
         }
         
         .row1, .row2 {
         position: static !important;
         top: auto !important;
         }
         .row3{
             margin-top: 0px;
         }
         .timeline-wrapper {
         padding: 10px;
         }
         
         /* Mobile specific layout */
         .label-wrapper {
         width: 100%;
         min-width: 100%;
         margin-bottom: 20px;
         }
         
         .top-label {
         padding: 15px 20px;
         font-size: 1rem;
         margin-bottom: 10px;
         }
         
         .connector-line {
         height: 40px;
         margin-top: 10px;
         }
         
         .connector-line::after {
         width: 30px;
         height: 30px;
         }
         
         /* Hide waveform on mobile */
         .waveform-container {
         display: none;
         }
         
         .timeline-node {
         position: relative;
         margin: 15px auto;
         left: 0 !important;
         transform: translateY(0) !important;
         width: 50px;
         height: 50px;
         }
         
         .timeline-node:hover {
         transform: scale(1.15) !important;
         }
         
         /* Adjust spacing */
         .row1 .row,
         .row2 .row,
         .row {
         margin-bottom: 20px !important;
         }
         
         /* Better touch targets */
         .top-label:active {
         transform: scale(0.98);
         }
         
         }
           .process-flow {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 0;
      flex-wrap: nowrap;
    }

    /* horizontal line behind boxes */
    .process-line {
      position: absolute;
      top: 50%;
      left: 8%;
      right: 8%;
      height: 3px;
      background: rgba(167, 203, 233, 0.4);
      transform: translateY(-50%);
      z-index: 1;
    }

    /* box styling */
    .process-step {
          background: #b7e4ea;
      color: #244161;
      padding: 14px;
      border-radius: 6px;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
      font-weight: 600;
      text-align: center;
      width: 300px; /* ✅ fixed equal width for all boxes */

      margin: 0 20px;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .process-step:hover {
      transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: #00ffff;
    }

    /* arrows between boxes */
    .process-step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -45px;
      transform: translateY(-50%);
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 12px solid #a7cbe9;
      z-index: 3;
    }

    /* Responsive (stacked) */
    @media (max-width: 991px) {
      .process-flow {
        flex-direction: column;
        align-items: center;
      }

      .process-line {
        width: 3px;
        height: 85%;
        left: 50%;
        top: 10%;
        transform: translateX(-50%);
      }

      .process-step {
        width: 80%; /* ✅ same width on mobile */

        margin: 25px 0;
      }

      .process-step:not(:last-child)::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -25px;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 12px solid #a7cbe9;
      }
    }
    .card-img {
    position: relative; /* Add this */
}
.profile-card {
    position: relative;
}

.corner-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fff 0%, #fff 50%, transparent 50%);
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6px;
}

.corner-badge img {
    width: 15px !important;
    height: 15px !important;
    object-fit: contain;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.card-img {
    position: relative;
}