
    :root {
      --primary: #6200EA;
      --secondary: #00E5FF;
      --accent: #FF4081;
      --dark: #121212;
      --light: #FFFFFF;
      --gradient1: linear-gradient(135deg, #6200EA, #B721FF);
      --gradient2: linear-gradient(135deg, #00E5FF, #00B8D4);
      --gradient3: linear-gradient(135deg, #FF4081, #F50057);
    }
    
    /** {*/
    /*  margin: 0;*/
    /*  padding: 0;*/
    /*  box-sizing: border-box;*/
    /*  font-family: 'Poppins', sans-serif;*/
    /*}*/
    
    body {
      background-color: var(--dark);
     
      overflow-x: hidden;
    }
    
    .container {
      max-width: 1400px;
      margin: 0 auto;
    
    }
    
    /* Hero Section */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    
    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('/api/placeholder/1600/900') center center/cover;
      opacity: 0.4;
      z-index: -2;
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--dark);
      opacity: 0.7;
      z-index: -1;
    }
    
    .hero-content {
      text-align: center;
    
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }
    
    .hero h1 {
      font-size: 5rem;
      font-weight: 800;
      margin-bottom: 30px;
      line-height: 1.1;
      text-transform: uppercase;
      background: linear-gradient(to right, var(--secondary), var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .hero p {
      font-size: 1.5rem;
      margin-bottom: 40px;
      font-weight: 300;
    }
    
    .hero-btn {
      display: inline-block;
      background: var(--gradient1);
      color: var(--light);
      padding: 18px 50px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.2rem;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(98, 0, 234, 0.4);
      z-index: 1;
    }
    
    .hero-btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: var(--gradient3);
      transition: width 0.4s;
      z-index: -1;
    }
    
    .hero-btn:hover:before {
      width: 100%;
    }
    
    .hero-btn:hover {
      box-shadow: 0 10px 40px rgba(255, 64, 129, 0.6);
      transform: translateY(-5px);
    }
    
    .floating-shape {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.3;
      z-index: -1;
      animation: float 10s ease-in-out infinite;
    }
    
    .shape1 {
      width: 300px;
      height: 300px;
      background: var(--primary);
      top: -100px;
      left: -100px;
    }
    
    .shape2 {
      width: 400px;
      height: 400px;
      background: var(--secondary);
      bottom: -150px;
      right: -150px;
      animation-delay: 2s;
    }
    
    .shape3 {
      width: 200px;
      height: 200px;
      background: var(--accent);
      top: 50%;
      right: 10%;
      animation-delay: 4s;
    }
    
    @keyframes float {
      0% { transform: translate(0, 0) rotate(0deg); }
      50% { transform: translate(20px, 20px) rotate(10deg); }
      100% { transform: translate(0, 0) rotate(0deg); }
    }
    
    /* Services Section */
    .services {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    
    .services-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 10% 20%, rgba(98, 0, 234, 0.05) 0%, transparent 60%),
                 radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
      z-index: -1;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 80px;
    }
    
    .section-title h2 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
      text-transform: uppercase;
    }
    
    .section-title h2 span {
      background: linear-gradient(to right, var(--secondary), var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .section-title p {
      font-size: 1.3rem;
      opacity: 0.8;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .service-card {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.4s, box-shadow 0.4s;
      position: relative;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 40px;
    }
    
    .service-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .service-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--gradient1);
      transition: height 0.4s;
    }
    
    .service-card:nth-child(2):before {
      background: var(--gradient2);
    }
    
    .service-card:nth-child(3):before {
      background: var(--gradient3);
    }
    
    .service-card:hover:before {
      height: 10px;
    }
    
    .service-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 30px;
      background: rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
    }
    
    .service-card:nth-child(1) .service-icon {
      background: rgba(98, 0, 234, 0.1);
    }
    
    .service-card:nth-child(2) .service-icon {
      background: rgba(0, 229, 255, 0.1);
    }
    
    .service-card:nth-child(3) .service-icon {
      background: rgba(255, 64, 129, 0.1);
    }
    
    .service-icon svg {
      width: 40px;
      height: 40px;
      color: var(--light);
      z-index: 1;
    }
    
    .service-card:nth-child(1) .service-icon svg {
      color: var(--primary);
    }
    
    .service-card:nth-child(2) .service-icon svg {
      color: var(--secondary);
    }
    
    .service-card:nth-child(3) .service-icon svg {
      color: var(--accent);
    }
    
    .service-content h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .service-content p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 30px;
      font-size: 1.1rem;
      line-height: 1.7;
    }
    
    .service-btn {
      display: inline-block;
      padding: 12px 30px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50px;
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .service-btn:hover {
      background: var(--primary);
      box-shadow: 0 10px 20px rgba(98, 0, 234, 0.3);
    }
    
    .service-card:nth-child(2) .service-btn:hover {
      background: var(--secondary);
      box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
    }
    
    .service-card:nth-child(3) .service-btn:hover {
      background: var(--accent);
      box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
    }
    
    /* Features Section */
    .features {
      padding: 120px 0;
      position: relative;
      background: #151515;
    }
    
    .features-container {
      display: flex;
      flex-direction: column;
      gap: 100px;
    }
    
    .feature-item {
      display: flex;
      align-items: center;
      gap: 60px;
    }
    
    .feature-item:nth-child(even) {
      flex-direction: row-reverse;
    }
    
    .feature-content {
      flex: 1;
    }
    
    .feature-content h3 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      position: relative;
      padding-left: 20px;
      font-weight: 700;
    }
    
    .feature-content h3:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 5px;
      background: var(--primary);
      border-radius: 3px;
    }
    
    .feature-item:nth-child(2) .feature-content h3:before {
      background: var(--secondary);
    }
    
    .feature-item:nth-child(3) .feature-content h3:before {
      background: var(--accent);
    }
    
    .feature-content p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 30px;
      line-height: 1.8;
    }
    
    .feature-list {
      list-style: none;
    }
    
    .feature-list li {
      margin-bottom: 15px;
      padding-left: 30px;
      position: relative;
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.8);
    }
    
    .feature-list li:before {
      content: 'âœ“';
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--primary);
      font-weight: bold;
    }
    
    .feature-item:nth-child(2) .feature-list li:before {
      color: var(--secondary);
    }
    
    .feature-item:nth-child(3) .feature-list li:before {
      color: var(--accent);
    }
    
    .feature-image {
      flex: 1;
      position: relative;
    }
    
    .feature-img-wrapper {
      width: 90%;
      height: 400px;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }
    
    .feature-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .feature-img-wrapper:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom right, rgba(98, 0, 234, 0.3), rgba(0, 229, 255, 0.1));
      z-index: 1;
    }
    
    .feature-item:nth-child(2) .feature-img-wrapper:before {
      background: linear-gradient(to bottom right, rgba(0, 229, 255, 0.3), rgba(255, 64, 129, 0.1));
    }
    
    .feature-item:nth-child(3) .feature-img-wrapper:before {
      background: linear-gradient(to bottom right, rgba(255, 64, 129, 0.3), rgba(98, 0, 234, 0.1));
    }
    
    /* Testimonials */
    .testimonials {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .testimonial-card {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      transition: transform 0.4s, box-shadow 0.4s;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    
    .testimonial-card:before {
      content: '"';
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 100px;
      color: rgba(255, 255, 255, 0.03);
      font-family: serif;
      line-height: 1;
    }
    
    .testimonial-content {
      margin-bottom: 30px;
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.8);
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .author-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 20px;
      border: 3px solid rgba(255, 255, 255, 0.1);
    }
    
    .author-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .author-info h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }
    
    .author-info span {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.5);
    }
    
    /* Call to Action */
    .cta {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    
    .cta-container {
      background: var(--gradient1);
      border-radius: 30px;
      padding: 80px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(98, 0, 234, 0.3);
    }
    
    .cta-container:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('/api/placeholder/500/500') center/cover;
      opacity: 0.05;
      z-index: 0;
    }
    
    .cta-content {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .cta-content h2 {
      font-size: 3.5rem;
      margin-bottom: 30px;
      font-weight: 800;
    }
    
    .cta-content p {
      font-size: 1.3rem;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    
    .cta-btn-primary {
      padding: 18px 50px;
      background: var(--light);
      color: var(--primary);
      font-weight: 600;
      font-size: 1.1rem;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .cta-btn-primary:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .cta-btn-secondary {
      padding: 18px 50px;
      background: transparent;
      color: var(--light);
      font-weight: 600;
      font-size: 1.1rem;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: 2px solid var(--light);
    }
    
    .cta-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-5px);
    }
    
    /* Animation classes */
    .pulse {
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .shimmer {
      position: relative;
      overflow: hidden;
    }
    
    .shimmer:after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
      animation: shimmer 2s infinite;
    }
    
    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 200%; }
    }
    .containerBox {
            background: rgba(0, 0, 0, 0.8);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            width: 80%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .containerBox::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, cyan, magenta, blue);
            opacity: 0.3;
            transform: rotate(30deg);
            z-index: -1;
        }
        h2 {
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .inputField {
            width: 97%;
            padding: 12px;
            margin: 10px 0;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 16px;
            outline: none;
            transition: 0.3s;
        }
        .inputField:focus {
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 10px cyan;
        }
        .button5454 {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(90deg, cyan, blue);
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .button5454:hover {
            background: linear-gradient(90deg, blue, cyan);
            box-shadow: 0 0 15px cyan;
            transform: scale(1.05);
        }
        #shippForm {
          place-self: center;
          margin: 100px 0px;
          justify-items: anchor-center;
        }
        
        .result-modal {

            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            align-content: center;
            justify-items: center;
        }

        .result-container {
            background: rgba(18, 18, 18, 0.95);
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 15px 50px rgba(98, 0, 234, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            animation: modalFadeIn 0.4s ease-out;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .result-header {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .result-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
            background: linear-gradient(to right, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .close-btn {
            font-size: 28px;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: all 0.3s;
            border-radius:20%;
        }

        .close-btn:hover {
            color: #fff;
            transform: scale(1.1);
        }

        .result-content {
            padding: 25px;
        }

        .shipping-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .info-card {
            flex: 1;
            display: flex;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 15px;
            align-items: center;
        }

        .from-card {
            margin-right: 10px;
        }

        .to-card {
            margin-left: 10px;
        }

        .location-icon {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-right: 15px;
        }

        .from-card .location-icon {
            background: rgba(98, 0, 234, 0.1);
        }

        .from-card .location-icon svg {
            color: var(--primary);
        }

        .to-card .location-icon {
            background: rgba(0, 229, 255, 0.1);
        }

        .to-card .location-icon svg {
            color: var(--secondary);
        }

        .location-icon svg {
            width: 24px;
            height: 24px;
        }

        .info-details {
            flex: 1;
        }

        .info-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            display: block;
            margin-bottom: 5px;
        }

        .info-value {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .route-line {
            display: flex;
            align-items: center;
            width: 100px;
            position: relative;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            position: absolute;
        }

        .start-dot {
            left: 0;
            background: var(--primary);
        }

        .end-dot {
            right: 0;
            background: var(--secondary);
        }

        .line {
            flex: 1;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            position: relative;
        }

        .shipment-details {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .detail-item {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .detail-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .detail-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .detail-item:nth-child(1) .detail-icon {
            background: rgba(98, 0, 234, 0.1);
        }

        .detail-item:nth-child(1) .detail-icon svg {
            color: var(--primary);
        }

        .detail-item:nth-child(2) .detail-icon {
            background: rgba(0, 229, 255, 0.1);
        }

        .detail-item:nth-child(2) .detail-icon svg {
            color: var(--secondary);
        }

        .price-item .detail-icon {
            background: rgba(255, 64, 129, 0.1);
        }

        .price-item .detail-icon svg {
            color: var(--accent);
        }

        .detail-icon svg {
            width: 24px;
            height: 24px;
        }

        .detail-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            display: block;
            margin-bottom: 5px;
        }

        .detail-value {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .price-item .detail-value {
            color: var(--accent);
        }

        .action-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 0 25px 25px;
        }

        .action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px;
            border-radius: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .action-btn svg {
            width: 20px;
            height: 20px;
            margin-bottom: 8px;
        }

        .recalculate-btn {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .recalculate-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .ship-btn {
            background: var(--gradient1);
            color: var(--light);
            box-shadow: 0 10px 20px rgba(98, 0, 234, 0.3);
        }

        .ship-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(98, 0, 234, 0.4);
        }

        .help-btn {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .help-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
    /* Responsive Styles */
    @media (max-width: 1200px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .hero h1 {
        font-size: 4rem;
      }
    }
    
    @media (max-width: 992px) {
      .feature-item {
        flex-direction: column;
        gap: 40px;
      }
      
      .feature-item:nth-child(even) {
        flex-direction: column;
      }
      
      .cta-container {
        padding: 60px 40px;
      }
      
      .cta-content h2 {
        font-size: 2.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
      
      .testimonial-grid {
        grid-template-columns: 1fr;
      }
      
      .hero h1 {
        font-size: 3rem;
      }
      
      .hero p {
        font-size: 1.2rem;
      }
      
      .section-title h2 {
        font-size: 2.5rem;
      }
      
      .cta-buttons {
        flex-direction: column;
      }
      .hero{
          min-height:70vh;
      }
    }
  