 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Hind Siliguri', sans-serif;
      color: white;
      background: linear-gradient(135deg, #2B0A6A, #2D1F92, #3A2BBD, #4B2FBF, #532E91);
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }

    /* More frequent grid with lower opacity */
    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 25px 25px;
      pointer-events: none;
      z-index: 0;
    }

    /* Compact Header — normal in-flow (not fixed / not sticky) */
    header {
      position: absolute;
      z-index: 10;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 40px;
      background: linear-gradient(135deg, rgba(43,10,106,0.92), rgba(83,46,145,0.92));
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 8px 32px rgba(15, 23, 42, 0.35);
      width: 100%;
      transition: all 0.3s ease;
      flex-wrap: nowrap;
      min-height: 60px;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 30px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001;
      flex-shrink: 0;
    }

    .mobile-menu-toggle span {
      width: 25px;
      height: 3px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 3px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .logo-header {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .logo-header img {
      height: 50px;
      filter: drop-shadow(0 0 15px rgba(83, 46, 145, 0.7));
    }

    .logo-text {
      font-size: 20px;
      font-weight: 700;
      background: linear-gradient(135deg, #fff, #E0D4FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 20px rgba(83, 46, 145, 0.5);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 0.8rem;
    }

    nav ul li a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
      font-size: 18px;
      padding: 8px 16px;
      border-radius: 25px;
      transition: all 0.3s ease;
      position: relative;
      background: transparent;
    }

    nav ul li a:hover {
      background: rgba(83, 46, 145, 0.4);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(83, 46, 145, 0.4);
    }

    .main-content {
      display: flex;
      justify-content: center;
      align-items: center;
      padding-top: 80px;
      gap: 60px;
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      min-height: 100vh;
    }

    .content-left {
      flex: 1;
      max-width: 550px;
      text-align: left;
    }

    .content-left h1 {
      font-size: 42px;
      font-weight: 400;
      text-shadow: 0 0 30px rgba(83, 46, 145, 0.6);
      line-height: 1.3;
    }

    .content-left p {
      font-size: 18px;
      line-height: 1.8;
      opacity: 0.95;
      margin-bottom: 35px;
      text-shadow: 0 0 10px rgba(83, 46, 145, 0.3);
    }

    .btn-group {
      margin-top: 25px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Ultra Premium Button Styles */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 40px;
      background: #3A2BBD;
      border: 2px solid transparent;
      border-radius: 60px;
      color: #fff;
      font-size: 18px;
      font-weight: 400;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      box-shadow:
        0 10px 30px rgba(83, 46, 145, 0.4),
        0 5px 15px rgba(83, 46, 145, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(135deg, #8B5CF6, #3A2BBD, #532E91, #8B5CF6);
      border-radius: 60px;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .btn-primary:hover {
      transform: translateY(-8px) scale(1.08);
      box-shadow:
        0 20px 50px rgba(83, 46, 145, 0.6),
        0 10px 25px rgba(83, 46, 145, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      letter-spacing: 1px;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover::after {
      opacity: 1;
    }

    .btn-primary:active {
      transform: translateY(-6px) scale(1.05);
    }

    /* Ultra Premium Secondary Button with Advanced Fill Animation */
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 40px;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 60px;
      color: #fff;
      font-size: 18px;
      font-weight: 400;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(15px);
      box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .btn-secondary::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: linear-gradient(135deg, #3A2BBD, #532E91, #6B46C1);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: -1;
    }

    .btn-secondary::after {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(58, 43, 189, 0.5));
      border-radius: 60px;
      z-index: -2;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .btn-secondary:hover {
      border-color: transparent;
      transform: translateY(-8px) scale(1.08);
      letter-spacing: 1px;
      box-shadow:
        0 20px 50px rgba(83, 46, 145, 0.4),
        0 10px 25px rgba(83, 46, 145, 0.2);
    }

    .btn-secondary:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-secondary:hover::after {
      opacity: 1;
    }

    .btn-secondary:active {
      transform: translateY(-6px) scale(1.05);
    }

    .content-right {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      min-height: 400px;
    }

    /* Code Editor Animation Container */
    .code-editor-container {
      width: 100%;
      max-width: 500px;
      height: 350px;
      position: relative;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 20px;
      backdrop-filter: blur(25px);
      box-shadow:
        0 20px 60px rgba(83, 46, 145, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
      overflow: hidden;
      animation: editorGlow 4s ease-in-out infinite alternate;
    }

    /* Editor Header */
    .editor-header {
      height: 50px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      padding: 0 20px;
      gap: 8px;
    }

    .traffic-lights {
      display: flex;
      gap: 8px;
    }

    .light {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    .light.red {
      background: linear-gradient(135deg, #ff5f57, #ff3b30);
      animation-delay: 0s;
    }

    .light.yellow {
      background: linear-gradient(135deg, #ffbd2e, #ff9500);
      animation-delay: 0.5s;
    }

    .light.green {
      background: linear-gradient(135deg, #28ca42, #30d158);
      animation-delay: 1s;
    }

    .editor-title {
      margin-left: 15px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
    }

    /* Code Content */
    .code-content {
      padding: 25px;
      height: calc(100% - 50px);
      font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
      font-size: 14px;
      line-height: 1.6;
      overflow: hidden;
      position: relative;
      text-align: left;
    }

    .code-line {
      display: block;
      margin-bottom: 8px;
      opacity: 0;
      animation: typeWriter 0.8s ease-out forwards;
      position: relative;
    }

    .code-line:nth-child(1) {
      animation-delay: 1s;
    }

    .code-line:nth-child(2) {
      animation-delay: 1.5s;
    }

    .code-line:nth-child(3) {
      animation-delay: 2s;
    }

    .code-line:nth-child(4) {
      animation-delay: 2.5s;
    }

    .code-line:nth-child(5) {
      animation-delay: 3s;
    }

    .code-line:nth-child(6) {
      animation-delay: 3.5s;
    }

    .code-line:nth-child(7) {
      animation-delay: 4s;
    }

    .code-line:nth-child(8) {
      animation-delay: 4.5s;
    }

    .line-number {
      color: rgba(255, 255, 255, 0.3);
      margin-right: 20px;
      font-size: 12px;
    }

    .keyword {
      color: #ff79c6;
    }

    .string {
      color: #f1fa8c;
    }

    .function {
      color: #50fa7b;
    }

    .comment {
      color: #6272a4;
      font-style: italic;
    }

    .variable {
      color: #8be9fd;
    }

    .operator {
      color: #ff5555;
    }

    /* Blinking Cursor */
    .cursor {
      display: inline-block;
      width: 2px;
      height: 18px;
      background: #50fa7b;
      animation: blink 1s infinite;
      margin-left: 2px;
    }

    /* Floating Elements */
    .floating-element {
      position: absolute;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(83, 46, 145, 0.3), rgba(58, 43, 189, 0.2));
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      animation: floatAround 8s ease-in-out infinite;
    }

    .floating-element:nth-child(1) {
      top: 10%;
      left: -20px;
      animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
      top: 60%;
      right: -20px;
      animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
      bottom: 20%;
      left: -30px;
      animation-delay: 4s;
    }

    /* Software Section Styles */
    .software-section {
      padding: 0px 40px 80px;
      position: relative;
      z-index: 1;
      min-height: 100vh;
    }

    .software-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 48px;
      font-weight: 700;
      text-align: center;
      background: #fff;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 30px rgba(83, 46, 145, 0.6);
    }

    .section-subtitle {
      font-size: 20px;
      text-align: center;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.85);
    }

    .software-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 20px 0;
    }

    .software-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
      border: 1.5px solid rgba(255, 255, 255, 0.18);
      border-radius: 20px;
      overflow: hidden;
      backdrop-filter: blur(25px);
      transition: all 0.4s ease;
      box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(83, 46, 145, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .software-card:hover {
      transform: translateY(-8px);
      border-color: rgba(139, 92, 246, 0.4);
      box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 12px 30px rgba(83, 46, 145, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #3A2BBD, #532E91);
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }



    .card-content {
      padding: 24px;
    }

    .card-content h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 12px;
      color: white;
      text-shadow: 0 0 20px rgba(83, 46, 145, 0.4);
    }

    .card-content p {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 16px;
      min-height: 60px;
    }

    .card-features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .feature-tag {
      display: inline-block;
      padding: 6px 14px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 18px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      font-weight: 500;
    }

    .software-btn-group {
      display: flex;
      gap: 12px;
      margin-top: 15px;
    }

    .btn-software {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex: 1;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
    }

    .btn-software svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .btn-buy {
      background: linear-gradient(135deg, #3A2BBD, #532E91);
      border: 2px solid rgba(139, 92, 246, 0.5);
      color: white;
      box-shadow: 0 8px 25px rgba(83, 46, 145, 0.4);
    }

    .btn-buy::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s ease;
    }

    .btn-buy:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 12px 35px rgba(83, 46, 145, 0.6);
      border-color: rgba(139, 92, 246, 0.8);
    }

    .btn-buy:hover::before {
      left: 100%;
    }

    .btn-buy:hover svg {
      transform: scale(1.15);
    }

    .btn-demo {
      background: rgba(255, 255, 255, 0.08);
      border: 2px solid rgba(255, 255, 255, 0.25);
      color: white;
      backdrop-filter: blur(15px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-demo::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .btn-demo:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.5);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .btn-demo:hover::before {
      opacity: 1;
    }

    .btn-demo:hover svg {
      transform: translateX(3px);
    }

    /* Footer icon styles */
    .footer-icon {
      width: 18px;
      height: 18px;
      display: inline-block;
      vertical-align: middle;
      margin-right: 8px;
      color: rgba(139, 92, 246, 0.9);
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .footer-contact-item svg {
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* Responsive Design for Software Section */
    @media (max-width: 1024px) {
      .software-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }

      .section-title {
        font-size: 38px;
      }
    }

    @media (max-width: 768px) {
      .software-section {
        padding: 100px 20px 60px;
      }

      .software-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .section-title {
        font-size: 32px;
      }

      .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
      }

      .card-image {
        height: 180px;
      }

      .card-content {
        padding: 20px;
      }

      .card-content h3 {
        font-size: 20px;
      }

      .card-content p {
        font-size: 13px;
        min-height: auto;
      }

      .btn-kinun {
        font-size: 15px;
        padding: 12px 0;
      }
    }

    @media (max-width: 480px) {
      .section-title {
        font-size: 26px;
      }

      .section-subtitle {
        font-size: 14px;
      }

      .feature-tag {
        font-size: 11px;
        padding: 5px 12px;
      }
    }

    /* Advanced Animations */
    @keyframes typeWriter {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes blink {

      0%,
      50% {
        opacity: 1;
      }

      51%,
      100% {
        opacity: 0;
      }
    }

    @keyframes editorGlow {
      0% {
        box-shadow: 0 20px 60px rgba(83, 46, 145, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      }

      100% {
        box-shadow: 0 25px 80px rgba(83, 46, 145, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
      }
    }

    @keyframes floatAround {

      0%,
      100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
      }

      25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
        opacity: 0.6;
      }

      50% {
        transform: translateY(-10px) translateX(-10px) rotate(-3deg);
        opacity: 0.4;
      }

      75% {
        transform: translateY(-25px) translateX(5px) rotate(2deg);
        opacity: 0.7;
      }
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 0.7;
      }

      50% {
        transform: scale(1.1);
        opacity: 1;
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .main-content {
        gap: 40px;
        padding: 100px 30px 30px;
      }

      .content-left h1 {
        font-size: 36px;
      }

      .animation-container {
        width: 350px;
        height: 350px;
      }

      .code-editor-container {
        max-width: 400px;
        height: 270px;
      }
    }

    @media (max-width: 768px) {
      header {
        width: 100%;
        padding: 10px 25px;
      }

      .logo-text {
        font-size: 16px;
      }

      nav ul {
        gap: 0.5rem;
      }

      nav ul li a {
        font-size: 12px;
        padding: 6px 12px;
      }

      .main-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 120px 20px 30px;
        gap: 40px;
      }

      .content-left {
        max-width: 100%;
      }

      .content-left h1 {
        font-size: 28px;
        margin-bottom: 15px;
      }

      .content-left p {
        font-size: 16px;
      }

      .btn-group {
        justify-content: center;
        gap: 15px;
      }

      .btn-primary,
      .btn-secondary {
        padding: 14px 28px;
        font-size: 14px;
      }

      .animation-container {
        width: 300px;
        height: 300px;
      }

      .code-editor-container {
        max-width: 100%;
        height: 270px;
      }

      .code-content {
        padding: 15px;
        font-size: 12px;
      }

      .floating-element {
        width: 30px;
        height: 30px;
      }

      .device {
        width: 160px;
        height: 100px;
      }

      .screen {
        width: 130px;
        height: 70px;
        margin: 15px auto;
      }
    }

    @media (max-width: 480px) {
      header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        border-radius: 25px;
      }

      nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
      }

      .content-left h1 {
        font-size: 24px;
        line-height: 1.3;
      }

      .btn-group {
        flex-direction: column;
        align-items: center;
      }

      .btn-primary,
      .btn-secondary {
        width: 200px;
        text-align: center;
      }

      .animation-container {
        width: 250px;
        height: 250px;
      }

      .code-block {
        font-size: 10px;
        padding: 6px 8px;
      }
    }

    .package-selection {
      display: flex;
      gap: 15px;
      margin: 15px 0;
      justify-content: center;
    }

    .radio-option {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .radio-option input[type="radio"] {
      display: none;
    }

    .radio-custom {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      position: relative;
      transition: all 0.3s ease;
    }

    .radio-option input[type="radio"]:checked + .radio-custom {
      border-color: rgba(255, 255, 255, 0.8);
    }

    .radio-option input[type="radio"]:checked + .radio-custom::after {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.9);
    }

    .radio-label {
      display: inline-block;
      padding: 6px 14px;
      background: transparent;
      border: 1px solid transparent;
      border-radius: 18px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 400;
      transition: all 0.3s ease;
    }

    .radio-option:hover .radio-label {
      color: rgba(255, 255, 255, 0.9);
    }

    .radio-option input[type="radio"]:checked ~ .radio-label {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
    }


    /* About / Team Section - Modern Unique Design */
    .about-section {
      padding: 80px 40px;
      position: relative;
      z-index: 1;
      min-height: 100vh;
    }

    .about-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 35px;
      padding: 40px 0;
      max-width: 1000px;
      margin: 0 auto;
    }

    .team-card-modern {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 30px;
      padding: 50px 35px 40px;
      text-align: center;
      backdrop-filter: blur(30px);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(83, 46, 145, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }

    .team-card-modern::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
    }

    .team-card-modern:hover {
      transform: translateY(-15px) scale(1.03);
      border-color: rgba(139, 92, 246, 0.6);
      box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(83, 46, 145, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 60px rgba(139, 92, 246, 0.4);
    }

    .team-card-modern:hover::before {
      opacity: 1;
    }

    .team-avatar-circle {
      width: 140px;
      height: 140px;
      margin: 0 auto 30px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .avatar-inner {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3A2BBD, #532E91, #6B46C1);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 3;
      box-shadow: 
        0 20px 50px rgba(83, 46, 145, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
      transition: all 0.4s ease;
    }

    .team-card-modern:hover .avatar-inner {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 
        0 25px 60px rgba(83, 46, 145, 0.7),
        inset 0 3px 0 rgba(255, 255, 255, 0.4);
    }

    .avatar-initial {
      font-size: 36px;
      font-weight: 700;
      color: white;
      letter-spacing: 2px;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .avatar-orbit {
      position: absolute;
      width: 100%;
      height: 100%;
      border: 2px solid rgba(139, 92, 246, 0.3);
      border-radius: 50%;
      border-top-color: rgba(139, 92, 246, 0.8);
      border-right-color: transparent;
      animation: orbit 4s linear infinite;
    }

    .avatar-orbit.orbit-2 {
      width: 130px;
      height: 130px;
      border-color: rgba(255, 255, 255, 0.2);
      border-bottom-color: rgba(255, 255, 255, 0.6);
      border-left-color: transparent;
      animation: orbit 6s linear infinite reverse;
    }

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

    .team-content {
      position: relative;
      z-index: 2;
    }

    .team-role-badge {
      display: inline-block;
      padding: 8px 20px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(58, 43, 189, 0.4));
      border: 1px solid rgba(139, 92, 246, 0.5);
      border-radius: 25px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.95);
      text-transform: uppercase;
      letter-spacing: 1px;
      backdrop-filter: blur(10px);
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(83, 46, 145, 0.3);
      transition: all 0.3s ease;
    }

    .team-card-modern:hover .team-role-badge {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(58, 43, 189, 0.6));
      transform: scale(1.05);
    }

    .team-name {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #fff;
      text-shadow: 0 2px 20px rgba(83, 46, 145, 0.6);
      letter-spacing: 0.5px;
    }

    .team-bio {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 25px;
      min-height: 50px;
    }

    .team-skills {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 25px;
    }

    .skill-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(58, 43, 189, 0.8));
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
      transition: all 0.3s ease;
    }

    .team-card-modern:hover .skill-dot {
      background: linear-gradient(135deg, #8B5CF6, #3A2BBD);
      box-shadow: 0 0 15px rgba(139, 92, 246, 1);
      transform: scale(1.3);
    }

    .skill-dot:nth-child(1) { animation: skillPulse 2s ease-in-out infinite 0s; }
    .skill-dot:nth-child(2) { animation: skillPulse 2s ease-in-out infinite 0.2s; }
    .skill-dot:nth-child(3) { animation: skillPulse 2s ease-in-out infinite 0.4s; }
    .skill-dot:nth-child(4) { animation: skillPulse 2s ease-in-out infinite 0.6s; }
    .skill-dot:nth-child(5) { animation: skillPulse 2s ease-in-out infinite 0.8s; }

    @keyframes skillPulse {
      0%, 100% {
        opacity: 0.5;
      }
      50% {
        opacity: 1;
      }
    }

    .team-contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      color: white;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(15px);
      box-shadow: 0 6px 20px rgba(83, 46, 145, 0.2);
    }

    .team-contact-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #3A2BBD, #532E91);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
    }

    .team-contact-btn span,
    .team-contact-btn svg {
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
    }

    .team-contact-btn:hover {
      border-color: rgba(139, 92, 246, 0.6);
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(83, 46, 145, 0.5);
    }

    .team-contact-btn:hover::before {
      opacity: 1;
    }

    .team-contact-btn:hover svg {
      transform: translateX(5px);
    }

    /* Team photo styles */
    .team-avatar-photo {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      object-fit: cover;
      position: relative;
      z-index: 3;
      box-shadow: 
        0 20px 50px rgba(83, 46, 145, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
      transition: all 0.4s ease;
      border: 3px solid rgba(255, 255, 255, 0.3);
    }

    .team-card-modern:hover .team-avatar-photo {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 
        0 25px 60px rgba(83, 46, 145, 0.7),
        inset 0 3px 0 rgba(255, 255, 255, 0.4);
    }

    .team-contact-info {
      margin-top: 15px;
      padding: 15px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .team-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.85);
    }

    .team-contact-item:last-child {
      margin-bottom: 0;
    }

    .team-contact-item svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      color: rgba(139, 92, 246, 0.9);
    }

    .team-contact-item a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .team-contact-item a:hover {
      color: #8B5CF6;
    }

    /* Responsive - Team Grid */
    @media (max-width: 1200px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }
    }

    @media (max-width: 1024px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }
    }

    @media (max-width: 768px) {
      .about-section {
        padding: 60px 20px 80px;
      }

      .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
      }

      .team-card-modern {
        padding: 40px 28px 35px;
      }

      .team-avatar-circle {
        width: 120px;
        height: 120px;
      }

      .avatar-inner {
        width: 90px;
        height: 90px;
      }

      .avatar-initial {
        font-size: 28px;
      }

      .avatar-orbit.orbit-2 {
        width: 110px;
        height: 110px;
      }

      .team-name {
        font-size: 22px;
      }

      .team-bio {
        font-size: 13px;
        min-height: auto;
      }
    }

    /* Enhanced Mobile Responsiveness */
    @media (max-width: 768px) {
      /* Show mobile menu toggle on right side */
      .mobile-menu-toggle {
        display: flex;
      }

      /* Hide desktop navigation */
      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(43, 10, 106, 0.95), rgba(58, 43, 189, 0.95));
        backdrop-filter: blur(30px);
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
        padding-top: 100px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
      }

      .nav-menu.active {
        right: 0;
      }

      .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 0 30px;
      }

      .nav-menu ul li {
        margin-bottom: 20px;
      }

      .nav-menu ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        transition: all 0.3s ease;
      }

      .nav-menu ul li a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(10px);
        border-color: rgba(255, 255, 255, 0.3);
      }

      /* Prevent body scroll when menu is open */
      body.menu-open {
        overflow: hidden;
      }

      /* Header adjustments */
      header {
        width: 100% !important;
        padding: 12px 20px !important;
        top: 0;
        border-radius: 0;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        min-height: 60px !important;
        flex-direction: row !important;
      }

      .logo-header {
        flex-shrink: 0 !important;
        order: 1;
      }

      .logo-header img {
        height: 40px;
      }

      .mobile-menu-toggle {
        flex-shrink: 0 !important;
        order: 2;
        margin-left: auto;
      }

      /* Main content mobile layout */
      .main-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 120px 20px 40px;
        gap: 40px;
        min-height: auto;
      }

      .content-left {
        max-width: 100%;
      }

      .content-left h1 {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 20px;
      }

      .content-left p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
      }

      .btn-group {
        justify-content: center;
        gap: 15px;
        flex-direction: column;
        align-items: center;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 32px;
        font-size: 16px;
      }

      /* Code editor mobile adjustments */
      .code-editor-container {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 270px;
        margin: 0 auto;
        border-radius: 15px;
      }

      .editor-header {
        height: 40px;
        padding: 0 15px;
      }

      .editor-title {
        font-size: 12px;
        margin-left: 10px;
      }

      .traffic-lights {
        gap: 6px;
      }

      .light {
        width: 10px;
        height: 10px;
      }

      .code-content {
        padding: 15px 10px;
        font-size: 11px;
        text-align: left;
        line-height: 1.5;
        overflow-x: auto;
      }

      .code-line {
        white-space: nowrap;
        margin-bottom: 6px;
      }

      .line-number {
        margin-right: 10px;
        font-size: 10px;
        min-width: 15px;
        display: inline-block;
      }

      .floating-element {
        width: 20px;
        height: 20px;
        display: none;
      }

      /* Software section mobile */
      .software-section {
        padding: 60px 20px 80px;
      }

      .section-title {
        font-size: 28px;
        margin-bottom: 15px;
      }

      .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
      }

      .software-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .software-card {
        margin: 0 auto;
        max-width: 350px;
      }

      .card-image {
        height: 180px;
      }

      .card-content {
        padding: 20px;
      }

      .card-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
      }

      .card-content p {
        font-size: 14px;
        min-height: auto;
        margin-bottom: 15px;
      }

      .package-selection {
        flex-direction: column;
        gap: 10px;
        align-items: center;
      }

      .radio-option {
        width: 100%;
        justify-content: center;
      }

      .feature-tag {
        font-size: 11px;
        padding: 5px 12px;
      }

      .btn-kinun {
        font-size: 15px;
        padding: 14px 0;
      }
    }

    /* Extra small mobile devices */
    @media (max-width: 480px) {
      header {
        padding: 10px 15px;
        border-radius: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        width: 95%;
      }

      .logo-header img {
        height: 35px;
      }

      .mobile-menu-toggle {
        width: 25px;
        height: 25px;
      }

      .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
      }

      .nav-menu {
        width: 100%;
        right: -100%;
      }

      .main-content {
        padding: 100px 15px 30px;
        gap: 30px;
      }

      .content-left h1 {
        font-size: 24px;
        line-height: 1.3;
      }

      .content-left p {
        font-size: 15px;
      }

      .btn-primary,
      .btn-secondary {
        max-width: 100%;
        padding: 14px 24px;
        font-size: 15px;
      }

      .code-editor-container {
        height: 270px;
      }

      .code-content {
        padding: 12px;
        font-size: 11px;
        text-align: left;
      }

      .section-title {
        font-size: 24px;
      }

      .section-subtitle {
        font-size: 14px;
      }

      .software-card {
        max-width: 100%;
      }

      .card-content {
        padding: 18px;
      }

      .card-content h3 {
        font-size: 18px;
      }

      .card-content p {
        font-size: 13px;
      }
    }

    /* Touch-friendly improvements */
    @media (hover: none) and (pointer: coarse) {
      .btn-primary:hover,
      .btn-secondary:hover,
      .btn-kinun:hover {
        transform: none;
      }

      .btn-primary:active,
      .btn-secondary:active,
      .btn-kinun:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
      }

      .software-card:hover {
        transform: none;
      }

      nav ul li a:hover {
        transform: none;
      }
    }

    /* Training Section Styles */
    .training-section {
      padding: 80px 40px;
      position: relative;
      z-index: 1;
      min-height: 100vh;
    }

    .training-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .training-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 20px 0;
    }

    .training-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
      border: 1.5px solid rgba(255, 255, 255, 0.18);
      border-radius: 20px;
      padding: 35px 28px;
      text-align: center;
      backdrop-filter: blur(25px);
      transition: all 0.4s ease;
      box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(83, 46, 145, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .training-card:hover {
      transform: translateY(-8px);
      border-color: rgba(139, 92, 246, 0.4);
      box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 12px 30px rgba(83, 46, 145, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .card-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(58, 43, 189, 0.2));
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
      transition: all 0.3s ease;
    }

    .training-card:hover .card-icon {
      transform: scale(1.1) rotate(5deg);
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(58, 43, 189, 0.3));
    }

    .training-card h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 12px;
      color: white;
      text-shadow: 0 0 20px rgba(83, 46, 145, 0.4);
    }

    .training-card p {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 20px;
      min-height: 60px;
    }

    .training-features {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }

    .feature-item {
      display: inline-block;
      padding: 8px 16px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 18px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      font-weight: 500;
    }

    .btn-enroll {
      display: block;
      width: 100%;
      padding: 14px 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
      border: 2px solid rgba(255, 255, 255, 0.25);
      border-radius: 50px;
      color: white;
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(15px);
      box-shadow: 0 6px 20px rgba(83, 46, 145, 0.2);
    }

    .btn-enroll::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #3A2BBD, #532E91, #6B46C1);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
    }

    .btn-enroll:hover {
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(83, 46, 145, 0.4);
    }

    .btn-enroll:hover::before {
      opacity: 1;
    }

    /* Contact Section Styles */
    .contact-section {
      padding: 80px 40px;
      position: relative;
      z-index: 1;
      min-height: 100vh;
    }

    .contact-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 40px;
      margin-top: 40px;
    }

    .contact-form-container {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
      border: 1.5px solid rgba(255, 255, 255, 0.18);
      border-radius: 20px;
      padding: 40px;
      backdrop-filter: blur(25px);
      box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(83, 46, 145, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      color: white;
      font-size: 14px;
      font-family: 'Hind Siliguri', sans-serif;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: rgba(139, 92, 246, 0.5);
      background: rgba(255, 255, 255, 0.12);
      box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .btn-submit {
      padding: 16px 0;
      background: linear-gradient(135deg, #3A2BBD, #532E91);
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      color: white;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(83, 46, 145, 0.4);
    }

    .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(83, 46, 145, 0.5);
      border-color: rgba(139, 92, 246, 0.5);
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .info-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
      border: 1.5px solid rgba(255, 255, 255, 0.18);
      border-radius: 16px;
      padding: 25px;
      backdrop-filter: blur(25px);
      box-shadow: 0 8px 20px rgba(83, 46, 145, 0.15);
      transition: all 0.3s ease;
    }

    .info-card:hover {
      transform: translateX(5px);
      border-color: rgba(139, 92, 246, 0.4);
      box-shadow: 0 12px 30px rgba(83, 46, 145, 0.25);
    }

    .info-icon {
      font-size: 32px;
      margin-bottom: 12px;
    }

    .info-card h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: white;
    }

    .info-card p {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Footer Styles */
    .footer {
      background: linear-gradient(135deg, rgba(43, 10, 106, 0.8), rgba(58, 43, 189, 0.8));
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 60px 40px 30px;
      position: relative;
      z-index: 1;
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-column h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 20px;
      color: white;
    }

    .footer-logo img {
      height: 60px;
      margin-bottom: 15px;
      filter: drop-shadow(0 0 15px rgba(83, 46, 145, 0.7));
    }

    .footer-desc {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 20px;
    }

    .footer-column ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-column ul li {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
    }

    .footer-column ul li a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .footer-column ul li a:hover {
      color: white;
      transform: translateX(5px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }

    /* Responsive - Training Section */
    @media (max-width: 1024px) {
      .training-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }
    }

    @media (max-width: 768px) {
      .training-section {
        padding: 60px 20px 80px;
      }

      .training-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .training-card {
        padding: 30px 24px;
      }

      .training-card p {
        min-height: auto;
      }

      .contact-section {
        padding: 60px 20px 80px;
      }

      .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .contact-form-container {
        padding: 30px 24px;
      }

      .footer {
        padding: 50px 20px 30px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 0;
      }

      .team-card-modern {
        padding: 35px 25px 30px;
      }
    }

    /* Demo Carousel Section */
    .demo-section {
      padding: 80px 40px;
      position: relative;
      z-index: 1;
    }

    .demo-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .demo-carousel {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 2px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px);
      padding: 20px;
    }

    .demo-slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .demo-slide {
      min-width: 100%;
      padding: 10px;
      box-sizing: border-box;
    }

    .demo-slide a {
      display: block;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      border-radius: 15px;
    }

    .demo-slide img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 15px;
      transition: transform 0.4s ease;
    }

    .demo-slide:hover img {
      transform: scale(1.05);
    }

    .demo-slide-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
      color: white;
      font-size: 18px;
      font-weight: 600;
      border-radius: 0 0 15px 15px;
    }

    .demo-nav {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .demo-nav-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
      border: 2px solid rgba(255, 255, 255, 0.25);
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .demo-nav-btn:hover {
      background: linear-gradient(135deg, #3A2BBD, #532E91);
      border-color: rgba(139, 92, 246, 0.6);
      transform: scale(1.1);
    }

    .demo-nav-btn svg {
      width: 24px;
      height: 24px;
    }

    .demo-indicators {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
    }

    .demo-indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .demo-indicator.active {
      background: linear-gradient(135deg, #8B5CF6, #A78BFA);
      transform: scale(1.2);
    }

    /* Client Reviews Section */
    .reviews-section {
      padding: 80px 40px;
      position: relative;
      z-index: 1;
    }

    .reviews-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      padding: 40px 0;
    }

    .review-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 25px;
      padding: 35px;
      backdrop-filter: blur(25px);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .review-card::before {
      content: '"';
      position: absolute;
      top: 15px;
      right: 25px;
      font-size: 80px;
      font-family: Georgia, serif;
      color: rgba(139, 92, 246, 0.2);
      line-height: 1;
    }

    .review-card:hover {
      transform: translateY(-8px);
      border-color: rgba(139, 92, 246, 0.5);
      box-shadow: 0 20px 50px rgba(83, 46, 145, 0.4);
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 20px;
    }

    .review-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: 3px solid rgba(139, 92, 246, 0.5);
      object-fit: cover;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .review-avatar-placeholder {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3A2BBD, #532E91);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      color: white;
      border: 3px solid rgba(139, 92, 246, 0.5);
    }

    .review-info h4 {
      font-size: 18px;
      font-weight: 700;
      color: white;
      margin-bottom: 5px;
    }

    .review-company {
      font-size: 14px;
      color: rgba(139, 92, 246, 0.9);
      font-weight: 500;
    }

    .review-rating {
      display: flex;
      gap: 4px;
      margin-bottom: 15px;
    }

    .review-star {
      color: #FFD700;
      font-size: 18px;
    }

    .review-star.empty {
      color: rgba(255, 255, 255, 0.3);
    }

    .review-text {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.85);
      font-style: italic;
    }

    /* Responsive - Demo & Reviews */
    @media (max-width: 1024px) {
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }
    }

    @media (max-width: 768px) {
      .demo-section,
      .reviews-section {
        padding: 60px 20px;
      }

      .demo-slide img {
        height: 250px;
      }

      .demo-nav-btn {
        width: 45px;
        height: 45px;
      }

      .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .review-card {
        padding: 28px;
      }

      .review-avatar,
      .review-avatar-placeholder {
        width: 60px;
        height: 60px;
      }

      .review-info h4 {
        font-size: 16px;
      }
    }

    /* Flat Team Cards - 4 per row */
    .team-card-flat {
      display: flex;
      align-items: center;
      gap: 15px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      padding: 18px 20px;
      backdrop-filter: blur(20px);
      transition: all 0.3s ease;
    }

    .team-card-flat:hover {
      transform: translateY(-5px);
      border-color: rgba(139, 92, 246, 0.5);
      box-shadow: 0 15px 40px rgba(83, 46, 145, 0.3);
    }

    .team-avatar-small {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid rgba(139, 92, 246, 0.5);
      position: relative;
    }

    .team-avatar-small img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .avatar-fallback {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #3A2BBD, #532E91);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      color: white;
    }

    .team-info-flat {
      flex: 1;
      min-width: 0;
    }

    .team-info-flat h3 {
      font-size: 16px;
      font-weight: 600;
      color: white;
      margin: 0 0 4px 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .team-role-flat {
      font-size: 12px;
      color: rgba(139, 92, 246, 0.9);
      font-weight: 500;
    }

    .team-contact-flat {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }

    .contact-icon-flat {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .contact-icon-flat:hover {
      background: linear-gradient(135deg, #3A2BBD, #532E91);
      border-color: rgba(139, 92, 246, 0.6);
      transform: scale(1.1);
    }

    .contact-icon-flat svg {
      width: 16px;
      height: 16px;
      stroke: rgba(255, 255, 255, 0.8);
    }

    /* Update team grid for 4 columns */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding: 40px 0;
      max-width: 1400px;
      margin: 0 auto;
    }

    @media (max-width: 1200px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .team-grid {
        grid-template-columns: 1fr;
      }
      
      .team-card-flat {
        padding: 15px;
      }
    }

    /* Improved Demo Showcase Section */
    .demo-showcase {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }

    .demo-main-slider {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 2px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px);
    }

    .demo-slides-wrapper {
      position: relative;
      width: 100%;
      height: 450px;
    }

    .demo-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: all 0.6s ease;
    }

    .demo-slide.active {
      opacity: 1;
      visibility: visible;
    }

    .demo-slide-link {
      display: block;
      width: 100%;
      height: 100%;
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }

    .demo-image-wrapper {
      width: 100%;
      height: 100%;
    }

    .demo-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .demo-slide:hover .demo-image-wrapper img {
      transform: scale(1.05);
    }

    .demo-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(58, 43, 189, 0.3), rgba(83, 46, 145, 0.3));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .demo-placeholder svg {
      width: 80px;
      height: 80px;
      stroke: rgba(255, 255, 255, 0.3);
    }

    .demo-slide-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
      transform: translateY(60%);
      transition: transform 0.4s ease;
    }

    .demo-slide:hover .demo-slide-overlay {
      transform: translateY(0);
    }

    .demo-slide-overlay h3 {
      font-size: 24px;
      font-weight: 700;
      color: white;
      margin: 0 0 15px 0;
    }

    .demo-view-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: linear-gradient(135deg, #3A2BBD, #532E91);
      border-radius: 25px;
      color: white;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .demo-view-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(83, 46, 145, 0.5);
    }

    .demo-view-btn svg {
      width: 18px;
      height: 18px;
    }

    .demo-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.5);
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
      backdrop-filter: blur(10px);
    }

    .demo-nav-btn:hover {
      background: linear-gradient(135deg, #3A2BBD, #532E91);
      border-color: rgba(139, 92, 246, 0.8);
      transform: translateY(-50%) scale(1.1);
    }

    .demo-nav-btn svg {
      width: 24px;
      height: 24px;
    }

    .demo-prev {
      left: 20px;
    }

    .demo-next {
      right: 20px;
    }

    .demo-thumbnails {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 25px;
    }

    .demo-thumb {
      width: 60px;
      height: 6px;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .demo-thumb:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    .demo-thumb.active {
      background: rgba(255, 255, 255, 0.3);
    }

    .demo-thumb.active .thumb-progress {
      animation: thumbProgress 5s linear forwards;
    }

    .thumb-progress {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, #8B5CF6, #A78BFA);
      border-radius: 3px;
    }

    @keyframes thumbProgress {
      from { width: 0; }
      to { width: 100%; }
    }

    @media (max-width: 768px) {
      .demo-slides-wrapper {
        height: 300px;
      }

      .demo-nav-btn {
        width: 40px;
        height: 40px;
      }

      .demo-prev {
        left: 10px;
      }

      .demo-next {
        right: 10px;
      }

      .demo-slide-overlay h3 {
        font-size: 18px;
      }
    }

    /* Modern Team Cards V2 - Beautiful 2 per row */
    .team-grid-modern {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      padding: 50px 0;
      max-width: 1000px;
      margin: 0 auto;
    }

    .team-card-v2 {
      position: relative;
      background: linear-gradient(165deg, rgba(139, 92, 246, 0.15) 0%, rgba(58, 43, 189, 0.08) 50%, rgba(30, 20, 70, 0.2) 100%);
      border: 1px solid rgba(139, 92, 246, 0.25);
      border-radius: 24px;
      padding: 30px;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .team-card-v2::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #8B5CF6, #A78BFA, #C4B5FD, #A78BFA, #8B5CF6);
      background-size: 200% 100%;
      animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .card-glow {
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    .team-card-v2:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(139, 92, 246, 0.5);
      box-shadow: 
        0 25px 60px rgba(83, 46, 145, 0.4),
        0 0 40px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .team-card-v2:hover .card-glow {
      opacity: 1;
    }

    .card-content-v2 {
      display: flex;
      align-items: center;
      gap: 25px;
      position: relative;
      z-index: 1;
    }

    .member-photo-wrapper {
      position: relative;
      width: 90px;
      height: 90px;
      flex-shrink: 0;
    }

    .photo-ring {
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 2px solid rgba(139, 92, 246, 0.4);
      border-radius: 50%;
      animation: pulse-ring 2s ease-in-out infinite;
    }

    .photo-ring.ring-2 {
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      border-color: rgba(139, 92, 246, 0.2);
      animation-delay: 0.5s;
    }

    @keyframes pulse-ring {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.05); opacity: 0.7; }
    }

    .member-photo {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(139, 92, 246, 0.6);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 2;
    }

    .photo-fallback {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6D28D9, #8B5CF6, #A78BFA);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      font-weight: 700;
      color: white;
      border: 3px solid rgba(139, 92, 246, 0.6);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 2;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .member-details {
      flex: 1;
    }

    .member-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.1));
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      color: #C4B5FD;
      margin-bottom: 12px;
      backdrop-filter: blur(10px);
    }

    .member-badge svg {
      stroke: #A78BFA;
    }

    .member-name {
      font-size: 22px;
      font-weight: 700;
      color: white;
      margin: 0 0 15px 0;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .member-social {
      display: flex;
      gap: 12px;
    }

    .social-btn {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .social-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .social-btn svg {
      width: 20px;
      height: 20px;
      stroke: rgba(255, 255, 255, 0.8);
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }

    .social-btn.phone:hover::before {
      background: linear-gradient(135deg, #22C55E, #16A34A);
      border-color: #22C55E;
    }

    .social-btn.email:hover::before {
      background: linear-gradient(135deg, #3B82F6, #2563EB);
      border-color: #3B82F6;
    }

    .social-btn:hover {
      transform: translateY(-3px) scale(1.1);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .social-btn:hover svg {
      stroke: white;
      transform: scale(1.1);
    }

    /* Responsive Team Grid Modern */
    @media (max-width: 768px) {
      .team-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
      }

      .team-card-v2 {
        padding: 24px;
      }

      .card-content-v2 {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }

      .member-photo-wrapper {
        margin: 0 auto;
      }

      .member-social {
        justify-content: center;
      }

      .member-name {
        font-size: 20px;
      }
    }