:root {
    --primary-color: #00b4d8;
    --secondary-color: #1a2d3a;
    --accent-color: #26bdf4;
    --text-color: #ffffff;
    --gradient-start: #1a2d3a;
    --gradient-end: #0a1929;
    --body-font-family: 'Poppins', sans-serif;
  }

  body {
    font-family: var(--body-font-family);
    background: linear-gradient(270deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-color);
    overflow-x: hidden;
  }

  .features-box-4 {
    background: linear-gradient(145deg, rgba(13, 27, 42, 0.95), rgba(6, 16, 26, 0.95)) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 224, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
  }

  .products-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
  }

  .products-section::before {
    content: '';
    /* position: absolute; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(0, 224, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
  }

  .section-header {
    position: relative;
    margin-bottom: 3rem;
  }

  .tech-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #00e0ff, transparent);
    margin: 1.5rem 0;
    position: relative;
  }

  .tech-line::before,
  .tech-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00e0ff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }

  .tech-line::before {
    left: 0;
  }

  .tech-line::after {
    right: 0;
  }

  .product-card {
    background: rgba(13, 27, 42, 0.9);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }

  .card-hexagon {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 224, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
  }

  .product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00e0ff;
    box-shadow:
      0 10px 30px rgba(0, 224, 255, 0.2),
      0 0 20px rgba(0, 224, 255, 0.1) inset;
  }

  .product-card:hover .card-hexagon {
    opacity: 1;
    transform: rotate(0deg);
  }

  .product-card-inner {
    position: relative;
    z-index: 2;
  }

  .product-icon {
    font-size: 2.5rem;
    color: #00e0ff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }

  .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 224, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .product-card:hover .icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
  }

  .product-content {
    text-align: center;
  }

  .product-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 1px #00e0ff;
    letter-spacing: 2px;
  }

  .product-level {
    font-family: 'Rajdhani', sans-serif;
    color: #00e0ff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .product-price {
    margin: 1.5rem 0;
    font-family: 'Orbitron', sans-serif;
  }

  .product-price .currency {
    color: #00e0ff;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .product-price .amount {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-left: 0.25rem;
  }

  .product-features {
    margin: 1.5rem 0;
  }

  .feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #e0e0e0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
  }

  .feature i {
    color: #00e0ff;
    margin-right: 0.75rem;
    font-size: 1rem;
  }


  .btn-action.style-2:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 224, 255, 0.3);
  }

  .btn-action.style-2 .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.5s ease;
  }

  .btn-action.style-2:hover .btn-glow {
    opacity: 1;
    transform: rotate(0deg);
  }

  @media (max-width: 991px) {
    .product-card {
      margin-bottom: 2rem;
    }

    .product-content h3 {
      font-size: 1.3rem;
    }

    .product-price .amount {
      font-size: 1.75rem;
    }
  }

  .features-box-4 .icon {
    color: #00e0ff;
    font-size: 4.5rem;
    margin-bottom: 25px;
    text-shadow: 0 0 25px var(--neon-glow);
    transition: text-shadow 0.4s ease, transform 0.4s ease;
    display: inline-block;
  }


  .icon-security-safe:before {
    content: "\e940";
    color: #fff;
  }

  .features-box-4 .title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00c5e1;
    text-shadow: 0 0 10px var(--neon-glow);
    margin-bottom: 10px;
    transition: color 0.4s ease;
  }

  .features-box-4 .icon span {
    font-size: 32px;
    transform: rotate(-45deg) !important;
  }

  .pricing-highlight-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    border-bottom: none;
  }

  .pricing-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 224, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 224, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    animation: grid-pulse 10s infinite alternate;
    z-index: 0;
    padding: 30px;
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: none;
    box-shadow: none;
    animation: fadeInScale 1s ease-out;
  }


  .features-box-4:hover .icon {
    text-shadow: 0 0 40px var(--accent-color);
    /* Even stronger glow on hover */
    transform: rotateY(20deg) scale(1.1);
    /* Subtle rotation and scale on hover */
  }

  .pricing-highlight-content .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
  }

  .pricing-highlight-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid #00e0ff;
    box-shadow: 0 0 50px rgba(0, 224, 255, 0.5), inset 0 0 20px rgba(0, 224, 255, 0.3);
    animation: fadeInScale 1s ease-out;
  }


  .pricing-highlight-content .original-price {
    font-size: 1.8rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 20px;
    display: block;
    opacity: 0.7;
  }

  .pricing-highlight-content .current-price {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 40px rgb(0 224 255 / 61%);
    margin-bottom: 5px;
    display: block;
    line-height: 1;
  }


  .pricing-highlight-content .description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-highlight-content .launch-offer {
    display: inline-block;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(255, 0, 123, 0.5);
  }


  .pricing-highlight-content .btn {
    padding: 18px 50px;
    font-size: 1.2rem;
    box-shadow: 0 0 30px var(--button-glow);
    transition: all 0.4s ease;
    color: #ffffff;
    border-radius: 12px;
  }

  .btn {
    background: linear-gradient(45deg, #40838c, var(--accent-color));
    border: none;
    color: #ffffff;
    padding: 15px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px var(--button-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .pricing-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
  }

  .pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
  }

  section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00e0ff, transparent) !important;
    opacity: 1;
  }

  /* Modern Hero Section */
  .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

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

  .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
  }

  /* Animated Background */
  .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
  }

  /* Enhanced Bouncing Logos */
  .bouncing-logos {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
  }

  section {
    position: relative;
  }

  .connect-account-section {
    position: relative;
    overflow: hidden;
  }

  .connect-account-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .section-title {
    position: relative;
    margin-bottom: 3rem;
  }

  .section-title .text-gradient {
    background: linear-gradient(90deg, #00e0ff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Removed color: transparent to make text visible */
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    /* Subtle outline effect */
    -webkit-font-smoothing: antialiased;
    /* Ensure antialiasing for sharpness */
    text-rendering: optimizeLegibility;
    /* Prioritize legibility */
    z-index: 2;
    /* Ensure it's on a distinct rendering layer */
  }

  .section-title .subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 400;
  }

  .process-steps {
    position: relative;
    z-index: 2;
  }

  .step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    /* Increased transition duration */
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    /* For pseudo-elements */
  }

  .step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 224, 255, 0.2) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.7s ease;
    /* Slower transition for glow */
    z-index: 0;
  }

  .step-card:hover::before {
    opacity: 1;
    transform: rotate(0deg) scale(1.1);
    /* Animate glow on hover */
  }

  .step-card:hover {
    transform: translateY(-8px) scale(1.02);
    /* More noticeable lift and slight scale */
    box-shadow: 0 15px 40px rgba(0, 224, 255, 0.25);
    /* Stronger shadow */
    border-color: #00e0ff;
  }

  .step-number {
    background: #0d1b2a;
    color: #eaeaea !important;
    width: 50px;
    /* Slightly larger number circle */
    height: 50px;
    /* Slightly larger number circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    /* Larger font size */
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px #00e0ff;
    /* Initial subtle glow */
    animation: pulseGlow 2s infinite alternate;
    /* Pulsing animation */
  }

  @keyframes pulseGlow {
    0% {
      box-shadow: 0 0 15px #00e0ff;
    }

    100% {
      box-shadow: 0 0 25px #344e6a;
    }
  }

  .step-content {
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .step-content h3 {
    color: #00e0ff;
    font-size: 1.5rem;
    /* Slightly larger heading */
    margin-bottom: 0.8rem;
    /* Adjusted margin */
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 224, 255, 0.3);
  }

  .step-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    /* Increased line height for readability */
  }

  .connecting-line {
    position: relative;
    height: 60px;
    /* Increased height for better visibility */
    margin: -30px 0;
    /* Adjusted margin to connect closely */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .connecting-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    /* Thicker line */
    height: 100%;
    background: linear-gradient(to bottom, #00e0ff, var(--accent-color));
    opacity: 0.7;
    animation: drawLine 3s ease-out forwards;
    /* Animation for drawing line */
  }

  @keyframes drawLine {
    0% {
      height: 0%;
      opacity: 0;
    }

    100% {
      height: 100%;
      opacity: 0.7;
    }
  }

  .connecting-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    /* Larger glowing dot */
    height: 12px;
    /* Larger glowing dot */
    background: #00e0ff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00e0ff, 0 0 25px var(--accent-color);
    /* Enhanced glow */
    animation: pulseDot 2s infinite alternate;
    /* Pulsing animation for dot */
  }

  @keyframes pulseDot {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }

    100% {
      transform: translate(-50%, -50%) scale(1.1);
      opacity: 0.8;
    }
  }

  @media (max-width: 768px) {
    .section-title .text-gradient {
      font-size: 2rem;
    }

    .step-card {
      padding: 1.5rem;
      flex-direction: column;
      /* Stack elements on smaller screens */
      align-items: center;
      /* Center items when stacked */
      text-align: center;
    }

    .step-content h3 {
      font-size: 1.3rem;
      margin-top: 0.5rem;
      /* Add margin when stacked */
    }

    .connecting-line {
      height: 40px;
      /* Adjust height for mobile */
      margin: -20px 0;
      /* Adjust margin for mobile */
    }
  }

  .bouncing-logo {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 180, 216, 0.3));
    transition: transform 0.3s ease;
  }

  .bouncing-logo:hover {
    transform: scale(1.1);
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
    }
  }

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

  @keyframes pulse {

    0%,
    100% {
      opacity: 0.5;
    }

    50% {
      opacity: 1;
    }
  }

  /* Enhanced Pricing Section */
  .pricing-section {
    padding: 100px 0;
    position: relative;
  }

  .pricing-section .title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00e0ff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .pricing-section__card {
    background: rgba(26, 45, 58, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pricing-section__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
  }

  .discounted-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00e0ff;
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
  }


  .features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    transition: transform 0.3s ease;
  }

  .features li:hover {
    transform: translateX(10px);
  }

  .features li::before {
    content: "✓";
    color: #00e0ff;
    position: absolute;
    left: 0;
    font-weight: bold;
  }


  /* Responsive Design */
  @media (max-width: 767px) {
    .hero-title {
      font-size: 2.5rem;
    }

    .hero-subtitle {
      font-size: 1.2rem;
    }

    .pricing-section__card {
      padding: 25px;
    }

    .bouncing-logo {
      width: 60px;
    }
  }

  /* Smooth Scroll */
  html {
    scroll-behavior: smooth;
  }

  /* AOS Animation Customization */
  [data-aos] {
    pointer-events: none;
  }

  [data-aos].aos-animate {
    pointer-events: auto;
  }

  /* Add styles for particles container */
  #particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
  }
</style>

<style>
  tr {
    color: white;
  }

  .prebuilt h4 {
    font-size: 1.3rem !important;
  }

  td {
    color: white;
  }

  .bouncing-logos {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    /* Space between banner and logos */
    flex-wrap: wrap;
    /* Responsive for smaller screens */
  }



  .bouncing-logo {
    width: 60px;
    /* Adjust size as needed */
    height: auto;
    animation: bounce 1.5s ease-in-out infinite;
    /* Bouncing animation */
  }

  /* Bouncing animation keyframes */
  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
      /* Bounce height */
    }
  }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .bouncing-logo {
      width: 50px;
      /* Smaller logos on mobile */
      margin: 10px auto;
      /* Center logos */
    }

    .bouncing-logos {
      justify-content: center;
      /* Center logos on smaller screens */
      gap: 15px;
      /* Space between logos */
    }
  }
</style>

<style>
  /* Container for bouncing logos */
  .bouncing-logos {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    /* Space above logos */
    flex-wrap: wrap;
    /* Responsive for smaller screens */
  }

  /* Individual logo container with white background and border radius */
  .logo-container {
    background-color: white;
    /* White background */
    border-radius: 10px;
    /* Rounded corners */
    padding: 10px;
    /* Space between image and background edge */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    /* Fixed width for consistency */
    height: 80px;
    /* Fixed height for consistency */
    animation: bounce 1.5s ease-in-out infinite;
    /* Apply bounce to container */
  }

  /* Logo image styling */
  .bouncing-logo {
    max-width: 100%;
    /* Ensure image fits within container */
    max-height: 100%;
    /* Ensure image fits within container */
    object-fit: contain;
    /* Scale image to fit without distortion */
  }

  /* Keyframes for up-and-down bounce */
  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
      /* Bounce height */
    }
  }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .logo-container {
      width: 60px;
      /* Smaller size on mobile */
      height: 60px;
      margin: 10px auto;
      /* Center logos */
    }

    .bouncing-logos {
      justify-content: center;
      /* Center logos on smaller screens */
      gap: 15px;
      /* Space between logos */
    }
  }
</style>

<style>
  /* Mobile Responsive Styles */
  @media (max-width: 768px) {

    /* General Mobile Styles */
    body {
      font-size: 14px;
    }

    /* Hero Section Mobile */
    .hero-section {
      min-height: auto;
      padding: 60px 20px;
      text-align: center;
    }

    .hero-title {
      font-size: 2.2rem !important;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1.1rem !important;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    /* Navigation Mobile */
    .navbar {
      padding: 10px 15px;
    }

    .navbar-brand img {
      max-width: 120px;
    }

    .navbar-toggler {
      padding: 0.25rem 0.5rem;
    }

    /* Pricing Section Mobile */
    .pricing-section {
      padding: 40px 15px;
    }

    .pricing-section .title {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .pricing-section__card {
      padding: 20px;
      margin-bottom: 20px;
    }

    .price {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 0px !important;
    }

    .desc {
      margin-top: 20px !important;
    }


    .discounted-price {
      font-size: 2rem;
    }


    .launch-offer {
      font-size: 0.9rem;
      padding: 16px 12px;
    }

    /* Features List Mobile */
    .features li {
      font-size: 1rem;
      margin-bottom: 12px;
      padding-left: 25px;
    }

    /* Buttons Mobile */
    .btn-action.style-2 {
      width: 100%;
      padding: 10px 20px !important;
      font-size: 0.9rem;
      text-align: center;
      justify-content: center;
    }

    /* Bouncing Logos Mobile */
    .bouncing-logos {
      justify-content: center;
      gap: 20px;
      margin-top: 1.5rem;
    }

    .bouncing-logo {
      width: 50px;
      margin: 0;
    }

    /* Table Mobile */
    .table-responsive {
      margin: 0 -15px;
      padding: 0 15px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    table {
      font-size: 0.9rem;
    }

    td,
    th {
      padding: 8px;
      white-space: nowrap;
    }

    /* Footer Mobile */
    footer {
      padding: 30px 15px;
    }

    .footer-content {
      text-align: center;
    }

    .footer-links {
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    /* WhatsApp Float Button Mobile */
    .float {
      right: 15px;
      bottom: 15px;
      width: 50px;
      height: 50px;
    }

    .my-float {
      font-size: 24px;
      margin-top: 12px;
    }

    /* Container Padding */
    .container {
      padding-left: 15px;
      padding-right: 15px;
    }

    /* Grid System Adjustments */
    .row {
      margin-left: -10px;
      margin-right: -10px;
    }

    .col,
    [class*="col-"] {
      padding-left: 10px;
      padding-right: 10px;
    }

    /* Image Responsiveness */
    img {
      max-width: 100%;
      height: auto;
    }

    /* Card Grid Mobile */
    .card-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    /* Section Spacing Mobile */
    section {
      padding: 40px 0;
    }

    /* Text Alignment Mobile */
    .text-center-mobile {
      text-align: center !important;
    }

    /* Hide/Show Elements Mobile */
    .hide-mobile {
      display: none !important;
    }

    .show-mobile {
      display: block !important;
    }

    /* Form Elements Mobile */
    input,
    select,
    textarea {
      font-size: 16px !important;
      /* Prevents zoom on iOS */
      padding: 12px;
    }

    /* Modal Mobile */
    .modal-dialog {
      margin: 10px;
    }

    .modal-content {
      padding: 15px;
    }

    /* Animation Adjustments Mobile */
    [data-aos] {
      transform: none !important;
      opacity: 1 !important;
      transition: none !important;
    }
  }

  /* Small Mobile Devices */
  @media (max-width: 480px) {
    .hero-title {
      font-size: 1.8rem !important;
    }

    .hero-subtitle {
      font-size: 1rem !important;
    }

    .pricing-section .title {
      font-size: 1.8rem;
    }

    .bouncing-logo {
      width: 40px;
    }

    .float {
      width: 45px;
      height: 45px;
    }

    .my-float {
      font-size: 20px;
      margin-top: 10px;
    }
  }

  /* Landscape Mode */
  @media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
      min-height: auto;
      padding: 30px 20px;
    }

    .float {
      bottom: 10px;
      right: 10px;
    }
  }


  .footer {
    color: #fff;
    padding-top: 40px;
    font-family: 'Poppins', sans-serif;
  }

  .footer__top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
  }

  .footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }

  .footer-col {
    min-width: 160px;
    flex: 1 1 160px;
    margin-bottom: 20px;
  }

  .brand-col {
    flex: 2 1 260px;
    min-width: 220px;
  }

  .footer-logo {
    width: 120px;
    margin-bottom: 12px;
  }

  .footer-tagline {
    font-size: 1rem;
    color: #b0c4d4;
    margin-bottom: 0;
  }

  .footer__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #26bdf4;
  }

  .footer__nav a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 0.98rem;
    transition: color 0.2s;
  }

  .footer__nav a:hover {
    color: #00b4d8;
  }

  .footer__bottom {
    padding: 18px 0 0 0;
  }

  .footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-social {
    display: flex;
    gap: 18px;
  }

  .footer-social a {
    color: #fff;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }

  .footer-social a:hover {
    background: #00b4d8;
    color: #fff;
    transform: translateY(-4px) scale(1.08);
  }

  .footer-social .fab.fa-instagram {
    font-size: 1.4rem;
  }

  @media (max-width: 900px) {
    .footer-row {
      flex-direction: column;
      gap: 0;
    }

    .footer-col,
    .brand-col {
      min-width: 100%;
      flex: 1 1 100%;
      margin-bottom: 24px;
    }

    .footer-bottom-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .footer-social {
      margin-top: 10px;
    }
  }

  @media (max-width: 600px) {
    .footer {
      padding-top: 24px;
    }

    .footer__top {
      padding-bottom: 18px;
    }

    .footer-logo {
      width: 90px;
    }

    .footer__title {
      font-size: 1rem;
    }

    .footer-tagline {
      font-size: 0.95rem;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      font-size: 1.2rem;
    }
  }


  .techy-feature-card {
    background: rgba(13, 27, 42, 0.7);
    border-radius: 24px;
    box-shadow: 0 0 32px 0 #00e0ff44, 0 2px 24px 0 #0008;
    border: 2.5px solid #00e0ff;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    padding: 32px 18px 24px 18px;
    margin-bottom: 0;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
  }

  .techy-feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 48px 0 #00e0ff88, 0 2px 24px 0 #000a;
    border-color: #26bdf4;
  }

  .techy-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #00e0ff;
    filter: drop-shadow(0 0 8px #00e0ff88);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .techy-feature-text {
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Orbitron', 'Poppins', sans-serif;
    letter-spacing: 1.2px;
    text-align: center;
    min-height: 32px;
    text-shadow: 0 0 12px #00e0ff44;
  }

  @media (max-width: 991px) {
    .techy-feature-card {
      min-height: 150px;
    }
  }

  @media (max-width: 767px) {
    .techy-feature-card {
      min-height: 120px;
      padding: 20px 8px 16px 8px;
    }

    .features-tech-main {
      border-radius: 18px;
    }
  }


  .footer{
    background: #0a1420 !important;
  }
  .broker-info{
    padding: 1rem !important;
  }
  .calculator-form{
        padding: 1rem !important;

  }
 
 .icon-youtobe{
  font-size: 1rem;
 }