

    
    /* Hide number spinners */
    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
      -webkit-appearance: none;
      appearance: none;
      margin: 0;
    }
    input[type=number] { 
      -moz-appearance: textfield; 
      appearance: textfield;
    }

    /* Container */
    .converter-section {
      padding: 100px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Section Title */
    .section-header {
      text-align: center;
      margin-bottom: 50px;
      font-family: 'Montserrat', sans-serif;
    }

    .section-subtitle {
      color: #797d79;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 2px;
      margin-bottom: 15px;
      font-family: 'Montserrat', sans-serif;

    }

    .section-title {
      font-size: 36px;
      color: #1e3a5f;
      font-weight: 700;
      line-height: 1.3;
    }

    .section-title .highlight {
      color: #f7931a;
    }

    /* Info Banner */
    .info-banner {
      background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
      border-left: 4px solid #4caf50;
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 2px 10px rgba(76, 175, 80, 0.1);
    }

    .info-banner .icon {
      font-size: 24px;
      flex-shrink: 0;
    }

    .info-banner p {
      color: #2e7d32;
      font-size: 14px;
      line-height: 1.6;
    }

    /* Converter Card */
    .converter-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      max-width: 1000px;
      margin: 0 auto;
    }  

    /* Form Groups */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 30px;
    }

    .form-group {
      position: relative;
    }

    .form-label {
      display: block;
      color: #666;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .input-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .input-field {
      width: 100%;
      padding: 16px 20px;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      font-size: 18px;
      font-weight: 600;
      color: #1e3a5f;
      transition: all 0.3s ease;
      background: white;
    }

    .input-field:focus {
      outline: none;
      border-color: #4caf50;
      box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
    }

    .input-field:disabled {
      background: #f9f9f9;
      cursor: not-allowed;
    }

    .dollar-prefix {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
      color: #666;
      font-weight: 600;
      pointer-events: none;
      z-index: 1;
    }

    .input-with-prefix {
      padding-left: 45px !important;
    }

    /* Dropdown Container */
    .dropdown-container {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      background: white;
      transition: all 0.3s ease;
    }

    .dropdown-container:hover {
      border-color: #4caf50;
    }

    .crypto-icon {
      font-size: 24px;
      flex-shrink: 0;
    }

    .select-field {
      flex: 1;
      border: none;
      background: transparent;
      font-size: 15px;
      font-weight: 600;
      color: #1e3a5f;
      cursor: pointer;
      outline: none;
      padding: 0;
      
    }

    /* Swap Button */
    .swap-container {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: -15px 0;
      position: relative;
      z-index: 10;
    }

    .swap-btn {
      background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
      color: white;
      border: none;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
      transition: all 0.3s ease;
      border: 4px solid white;
    }

    .swap-btn:hover {
      transform: rotate(180deg) scale(1.1);
      box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
    }

    .swap-btn:active {
      transform: rotate(180deg) scale(0.95);
    }

    /* Result Box */
    .result-box {
      background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
      padding: 30px;
      border-radius: 15px;
      margin-bottom: 25px;
      border: 2px solid #e0e7ef;
    }

    .result-label {
      color: #666;
      font-size: 14px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .result-amount {
      font-size: 42px;
      font-weight: 700;
      color: #1e3a5f;
      margin-bottom: 15px;
    }

    .result-currency {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Exchange Rate Display */
    .exchange-rate-box {
      background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      border: 2px dashed #2196f3;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      margin-bottom: 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .exchange-rate-text {
      color: #1976d2;
      font-weight: 600;
      font-size: 16px;
      flex: 1;
      min-width: 200px;
    }

    .refresh-btn {
      background: #2196f3;
      color: white;
      border: none;
      padding: 10px 24px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .refresh-btn:hover {
      background: #1976d2;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
    }

    /* Action Buttons */
    .action-buttons {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
      color: white;
      border: none;
      padding: 16px 40px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    }

    .how-it-works {
      color: #666;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .how-it-works:hover {
      color: #4caf50;
      text-decoration: underline;
    }

    /* Modal Styles */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(5px);
    }

    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }

    .modal-content {
      background: white;
      border-radius: 20px;
      max-width: 600px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: scale(0.9) translateY(20px);
      transition: transform 0.3s ease;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .modal-overlay.active .modal-content {
      transform: scale(1) translateY(0);
    }

    .modal-header {
      padding: 30px 30px 20px;
      border-bottom: 2px solid #f0f0f0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .modal-title {
      font-size: 24px;
      font-weight: 700;
      color: #1e3a5f;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .close-btn {
      background: #f5f5f5;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      color: #666;
    }

    .close-btn:hover {
      background: #e0e0e0;
      transform: rotate(90deg);
    }

    .modal-body {
      padding: 30px;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
      padding: 60px 20px;
      text-align: center;
      color: white;
      margin: 60px 0;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .cta-subtitle {
      font-size: 16px;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .btn-convert {
      background: white;
      color: #1e3a5f;
      border: none;
      padding: 18px 50px;
      border-radius: 12px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }

    .btn-convert:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .converter-card {
        padding: 25px 20px;
      }

      .section-title {
        font-size: 28px;
      }

      .result-amount {
        font-size: 32px;
      }

      .exchange-rate-box {
        flex-direction: column;
        text-align: center;
      }

      .cta-title {
        font-size: 24px;
      }

      .modal-content {
        margin: 20px;
      }
    }

    /* Loading Animation */
    .loading {
      display: inline-block;
      width: 16px;
      height: 16px;
      border: 2px solid #f3f3f3;
      border-top: 2px solid #4caf50;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-in {
      animation: fadeInUp 0.6s ease-out;
    }


        /* Main Section */
    .app-download-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #fde5ba 0%, #ffffff 100%);
      position: relative;
    }

    /* Phone Image Container */
    .phone-container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .phone-mockup {
      max-width: 100%;
      height: auto;
      filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
    }

    /* Content Section */
    .content-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 40px 30px;
    }

    .section-title {
      font-size: 48px;
      font-weight: 700;
      color: #1e3a5f;
      margin-bottom: 25px;
      line-height: 1.2;
      font-family: 'Montserrat', sans-serif;
    }

    .section-description {
      font-size: 18px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 50px;
    }

    /* App Store Buttons */
    .app-buttons {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 400px;
    }

    .app-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      padding: 20px 50px;
      border-radius: 60px;
      font-size: 20px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
      border: none;
    }

    .app-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }

    .btn-apple {
      background: #000000;
      color: white;
    }

    .btn-apple:hover {
      background: #2c2c2c;
      color: white;
    }

    .btn-android {
      background: #34a853;
      color: white;
    }

    .btn-android:hover {
      background: #2d8e47;
      color: white;
    }

    .btn-icon {
      font-size: 26px;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
      .section-title {
        font-size: 38px;
        text-align: center;
      }

      .section-description {
        text-align: center;
      }

      .phone-container {
        order: -1;
        margin-bottom: 30px;
      }

      .content-container {
        align-items: center;
        text-align: center;
      }

      .app-buttons {
        align-items: center;
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .app-download-section {
        padding: 50px 0;
      }

      .section-title {
        font-size: 32px;
      }

      .section-description {
        font-size: 16px;
        margin-bottom: 40px;
      }

      .app-btn {
        padding: 18px 40px;
        font-size: 18px;
        width: 100%;
      }
    }

    @media (max-width: 576px) {
      .section-title {
        font-size: 28px;
      }

      .content-container {
        padding: 20px 15px;
      }

      .app-btn {
        max-width: 100%;
      }
    }

            /* Keep your existing section styles */
        .dt-service-area {
            padding: 120px 0;
            background: #f8f9fa;
            position: relative;
            z-index: 1;
        }

        .gray-bg {
            background-color: #f8f9fa !important;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-xl-12 {
            width: 100%;
            padding: 0 15px;
        }

        .col-xl-4, .col-lg-6, .col-md-6 {
            padding: 0 15px;
        }

        @media (min-width: 1200px) {
            .col-xl-4 {
                width: 33.333%;
            }
        }

        @media (min-width: 992px) and (max-width: 1199px) {
            .col-lg-6 {
                width: 50%;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .col-md-6 {
                width: 50%;
            }
        }

        @media (max-width: 767px) {
            .col-xl-4, .col-lg-6, .col-md-6 {
                width: 100%;
            }
        }

        .services-featured-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .featured-service-card {
            border-radius: 24px;
            padding: 50px 45px;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .featured-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Full width card for third service */
        .featured-service-card.full-width {
            grid-column: 1 / -1;
        }

        /* Gradient backgrounds */
        .featured-card-giftcard {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .featured-card-crypto {
            background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
        }

        .featured-card-bills {
            background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
        }

        .featured-service-content {
            position: relative;
            z-index: 2;
        }

        .featured-service-title {
            font-size: 30px;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .featured-service-subtitle {
            font-size: 17px;
            color: #2d3748;
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 450px;
        }

        .featured-service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #000000;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .featured-service-link:hover {
            gap: 12px;
        }

        .featured-service-link i {
            font-size: 18px;
        }

        /* Visual mockup containers */
        .featured-visual-mockup {
            position: relative;
            margin-top: 30px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            min-height: 280px;
        }

        /* Brand logos showcase (for gift cards) */
        .brand-logos-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }

        .brand-logo-circle {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            position: relative;
            transition: transform 0.3s ease;
        }

        .brand-logo-circle:hover {
            transform: scale(1.1) rotate(-5deg);
        }

        .brand-logo-circle i {
            font-size: 40px;
        }

        /* Specific brand colors */
        .brand-nike { background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); }
        .brand-amazon { background: #232f3e; }
        .brand-asos { background: #000; }
        .brand-playstation { background: linear-gradient(135deg, #003087 0%, #0070cc 100%); }
        .brand-netflix { background: #e50914; }
        .brand-hm { background: linear-gradient(135deg, #e50010 0%, #cc0000 100%); }
        .brand-bestbuy { background: #003087; }
        .brand-google { background: linear-gradient(135deg, #4285f4 0%, #34a853 100%); }
        .brand-steam { background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%); }
        .brand-ebay { background: linear-gradient(135deg, #e53238 0%, #0064d2 100%); }

        /* Crypto icons */
        .crypto-icons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }

        .crypto-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .crypto-icon:hover {
            transform: translateY(-8px);
        }

        .crypto-icon i {
            font-size: 50px;
            color: #f7931a;
        }

        .crypto-icon.ethereum i {
            color: #627eea;
        }

        .crypto-icon.usdt i {
            color: #26a17b;
        }

        /* Phone mockup */
        .phone-mockup {
            /*width: 280px;*/
            /*height: 560px;*/
            /*background: #1a1a2e;*/
            border-radius: 40px;
            padding: 15px;
            /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);*/
            position: relative;
            margin: 0 auto;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: #fff;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
        }

        .phone-notch {
            width: 120px;
            height: 25px;
            background: #1a1a2e;
            border-radius: 0 0 20px 20px;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        /* Phone screen content */
        .phone-content {
            padding: 40px 20px 20px;
            height: 100%;
            background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
        }

        .phone-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .phone-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
        }

        /* List items in phone */
        .phone-list {
            margin-top: 20px;
        }

        .phone-list-item {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 18px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .phone-list-icon {
            width: 45px;
            height: 45px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a2e;
            font-size: 18px;
        }

        .phone-list-text {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a2e;
        }

        /* Full width layout for bills card */
        .featured-service-card.full-width .featured-visual-mockup {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 40px auto 0;
        }

        .bill-feature {
            text-align: center;
        }

        .bill-icon-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .bill-icon-circle:hover {
            transform: scale(1.1);
        }

        .bill-icon-circle i {
            font-size: 55px;
            color: #1a1a2e;
        }

        .bill-feature-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 8px;
        }

        .bill-feature-desc {
            font-size: 14px;
            color: #495057;
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .services-featured-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .featured-service-card.full-width {
                grid-column: 1;
            }

            .featured-service-title {
                font-size: 36px;
            }


        }

        @media (max-width: 768px) {
            .featured-service-card {
                padding: 35px 30px;
                min-height: 450px;
            }

            .featured-service-title {
                font-size: 32px;
            }

            .brand-logo-circle {
                width: 70px;
                height: 70px;
            }

            .brand-logo-circle i {
                font-size: 32px;
            }

            .crypto-icon {
                width: 80px;
                height: 80px;
            }

            .crypto-icon i {
                font-size: 40px;
            }

            .featured-service-card.full-width .featured-visual-mockup {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .bill-icon-circle {
                width: 100px;
                height: 100px;
            }

            .bill-icon-circle i {
                font-size: 45px;
            }
        }

          .hero-section-modern {
            background: linear-gradient(135deg, #eaab66 0%, #a2514b00 100%);            min-height: 100vh;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 80px 20px;
        }

        /* Abstract background shapes */
        .hero-section-modern::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -200px;
            left: -200px;
        }

        .hero-section-modern::after {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            bottom: -300px;
            right: -300px;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
        }

    .hero-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        justify-items: start; /* Add this */
    }

        /* Left side - Content */
        .hero-text-content {
            color: #ff8d20;
        }

        .hero-brands-flags {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .hero-flag-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            font-size: 24px;
            transition: transform 0.3s ease;
            animation: floatIn 0.6s ease forwards;
            opacity: 0;
        }

        .hero-flag-icon:hover {
            transform: translateY(-5px) scale(1.1);
        }

        /* Stagger animation for icons */
        .hero-flag-icon:nth-child(1) { animation-delay: 0.1s; }
        .hero-flag-icon:nth-child(2) { animation-delay: 0.2s; }
        .hero-flag-icon:nth-child(3) { animation-delay: 0.3s; }
        .hero-flag-icon:nth-child(4) { animation-delay: 0.4s; }
        .hero-flag-icon:nth-child(5) { animation-delay: 0.5s; }
        .hero-flag-icon:nth-child(6) { animation-delay: 0.6s; }
        .hero-flag-icon:nth-child(7) { animation-delay: 0.7s; }
        .hero-flag-icon:nth-child(8) { animation-delay: 0.8s; }

        @keyframes floatIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-main-title {
            font-size: 60px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 25px;
            animation: slideInLeft 0.8s ease;
           font-family: 'Montserrat', sans-serif;

        }

        .hero-subtitle {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 600px;
            animation: slideInLeft 1s ease;
            color: #000000 !important;

        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInLeft 1.2s ease;
        }

        .hero-btn {
            padding: 18px 40px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .hero-btn-primary {
            background: #fff;
            color: #fe6700;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }

        .hero-btn-secondary {
            background: #fe6700;
            color: #fff;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Right side - Visual mockup */
      .hero-visual-side {
          position: relative;
          animation: fadeIn 1s ease;
          justify-self: flex-start;
            max-width: 600px;
            margin-left: -200px;
      }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-person-image {
            position: relative;
            z-index: 3;
        }

        .hero-person-image img {
            max-width: 170%;
            border-radius: 30px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
        }

        /* Transaction card floating */
        .hero-transaction-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            min-width: 320px;
            animation: floatUp 1.5s ease infinite alternate;
        }



/* Tablet Responsive (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-person-image img {
        max-width: 150%;
    }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
    .hero-person-image img {
        max-width: 120%;
        border-radius: 20px;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    }
}

/* Small Mobile (480px - 576px) */
@media (max-width: 576px) {
    .hero-person-image img {
        max-width: 100%;
        border-radius: 15px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    }
}

/* Extra Small Mobile (< 480px) */
@media (max-width: 480px) {
    .hero-person-image img {
        max-width: 100%;
        border-radius: 12px;
        filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.1));
    }
}


        @keyframes floatUp {
            from { transform: translateY(0px); }
            to { transform: translateY(-15px); }
        }

        .hero-transaction-card.card-1 {
            bottom: 240px;
            right: 50px;
            animation-delay: 0.3s;
        }

        .hero-transaction-card.card-2 {
            bottom: 50px;
            right: 50px;
            animation-delay: 0.6s;
        }

    

/* Extra Small Mobile (< 480px) */
@media (max-width: 480px) {
    .hero-transaction-card {
        min-width: 100%;
        padding: 15px;
        border-radius: 14px;
        margin-bottom: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .hero-transaction-card.card-1 {
        margin-bottom: 10px;
    }
    
    .hero-transaction-card.card-2 {
        margin-bottom: 10px;
    }
    
    .transaction-header {
        margin-bottom: 15px;
    }
    
    .transaction-title {
        font-size: 13px;
    }
    
    .transaction-see-all {
        font-size: 11px;
    }
    
    .transaction-item {
        padding: 8px;
        gap: 10px;
    }
    
    .transaction-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .transaction-name {
        font-size: 12px;
    }
    
    .transaction-status {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .transaction-price {
        font-size: 13px;
    }
    
    .transaction-date {
        font-size: 10px;
    }
}        

        .transaction-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .transaction-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
        }

        .transaction-see-all {
            font-size: 13px;
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

        .transaction-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 12px;
            margin-bottom: 12px;
        }

        .transaction-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .transaction-icon.bitcoin {
            background: #f7931a;
            color: #fff;
        }

        .transaction-icon.gift {
            background: #e50914;
            color: #fff;
        }

        .transaction-icon.amazon {
            background: #232f3e;
            color: #fff;
        }

        .transaction-info {
            flex: 1;
        }

        .transaction-name {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 4px;
        }

        .transaction-status {
            display: inline-block;
            padding: 4px 12px;
            background: #d4edda;
            color: #155724;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
        }

        .transaction-amount {
            text-align: right;
        }

        .transaction-price {
            font-size: 15px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 4px;
        }

        .transaction-date {
            font-size: 11px;
            color: #6c757d;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-main-title {
                font-size: 56px;
            }

            .hero-visual-side {
                order: -1;
            }

            .hero-transaction-card {
                min-width: 280px;
            }

            .hero-transaction-card.card-1 {
                bottom: 120px;
                right: 20px;
            }

            .hero-transaction-card.card-2 {
                bottom: 30px;
                right: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-section-modern {
                padding: 60px 20px;
            }

            .hero-main-title {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-cta-buttons {
                flex-direction: column;
            }

            .hero-btn {
                width: 100%;
                justify-content: center;
            }

            .hero-flag-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .hero-transaction-card {
                position: relative;
                bottom: auto !important;
                right: auto !important;
                margin-bottom: 15px;
                min-width: 100%;
            }
        }


        /* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
    .hero-visual-side {
        margin-left: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-person-image {
        width: 170%;
        margin-left: -200px;
        text-align: center;
    }

    .hero-person-image img {
        max-width: 80%;
        border-radius: 20px;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    }

    .hero-transaction-card {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-bottom: 15px;
        min-width: 100%;
        animation: none; /* Remove floating animation on mobile */
    }

    .hero-transaction-card.card-1,
    .hero-transaction-card.card-2 {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
    }
}

/* Small Mobile (480px - 576px) */
@media (max-width: 576px) {
    .hero-visual-side {
        margin-left: 0;
        padding: 0 10px;
    }

    .hero-person-image img {
        max-width: 90%;
        border-radius: 15px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    }

    .hero-transaction-card {
        min-width: 100%;
        padding: 18px;
        border-radius: 16px;
        margin-bottom: 12px;
    }
}

/* Extra Small Mobile (< 480px) */
@media (max-width: 480px) {
    .hero-visual-side {
        margin-left: 0;
        padding: 0 5px;
    }

    .hero-person-image img {
        max-width: 95%;
        border-radius: 12px;
        filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.1));
    }

    .hero-transaction-card {
        min-width: 100%;
        padding: 15px;
        border-radius: 14px;
        margin-bottom: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .transaction-header {
        margin-bottom: 12px;
    }
    
    .transaction-title {
        font-size: 13px;
    }
    
    .transaction-see-all {
        font-size: 11px;
    }
    
    .transaction-item {
        padding: 10px;
        gap: 10px;
        margin-bottom: 8px;
    }
    
    .transaction-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .transaction-name {
        font-size: 12px;
    }
    
    .transaction-status {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .transaction-price {
        font-size: 13px;
    }
    
    .transaction-date {
        font-size: 10px;
    }
}