  body {
      box-sizing: border-box;
      /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
      font-family: "Karma", Sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }
    
    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .main-wrapper {
        width: 100%;
        height: 100%;
        overflow-auto;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    /* Logo Styles */
    .logo-container {
      margin-bottom: 3rem;
      animation: fadeInDown 1s ease-out;
    }

    .company-logo {
      max-width: 100%;
      height: auto;
      /*filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));*/
      transition: transform 0.3s ease;
    }

    .company-logo:hover {
      transform: scale(1.05);
    }

    .logo-fallback {
      /*display: none;*/
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      /*background: rgba(255, 255, 255, 0.15);*/
      backdrop-filter: blur(10px);
      /*padding: 1rem 3rem;*/
      border-radius: 20px;
      /*border: 2px solid rgba(255, 255, 255, 0.3);*/
      /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);*/
      margin: 0 auto;
      max-width: 12rem;
    }

    .logo-icon {
      font-size: 4rem;
      color: white;
      text-align:-webkit-center;
    }

    .logo-text {
      text-align: left;
    }

    .logo-name {
      font-size: 2.5rem;
      font-weight: 800;
      color: white;
      letter-spacing: 2px;
    }

    .logo-tagline {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 300;
      letter-spacing: 1px;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    

    /* Hero Section */
    .hero-section {
      min-height: 80vh;
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
      color: black;
      position: relative;
      overflow: hidden;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /*background: rgba(0, 0, 0, 0.3);*/
      background: rgb(0 0 0 / 8%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 50px 0;
    }

    .hero-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease-out;
      
    }

    .hero-subtitle {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      opacity: 0.95;
      animation: fadeInUp 1s ease-out 0.2s backwards;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 4rem;
      margin-top: 3rem;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease-out 0.4s backwards;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      display: block;
    }

    .stat-label {
      font-size: 1rem;
      opacity: 0.9;
      margin-top: 0.5rem;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* About Section */
    .about-section {
      background: white;
      padding: 100px 0;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #667eea;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: #764ba2;
    }

    .about-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #000000;
      margin-top: 2rem;
      text-align:justify;
    }

    .timeline-item {
      padding: 1.5rem;
      border-left: 3px solid #667eea;
      margin-bottom: 2rem;
      position: relative;
    }
    .timeline-item > p 
    {
        color: #000000;
        text-align:justify;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 1.5rem;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #764ba2;
    }

    .timeline-year {
      font-size: 1.5rem;
      font-weight: 700;
      color: #667eea;
      margin-bottom: 0.5rem;
    }

    /* Categories Section */
    .categories-section {
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      padding: 100px 0;
    }

    .category-card {
      background: white;
      border-radius: 15px;
      padding: 1rem;
      margin-bottom: 2rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: none;
      /* height: 100%; */
      /* text-align: center; */
    }

    .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .category-icon {
      font-size: 2rem;
      color: #667eea;
      margin-bottom: 1rem;
    }

    .category-name {
      font-size: 1rem;
      font-weight: 600;
      color: #333;
    }

    /* Contact Section */
    .contact-section {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 100px 0;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 2rem;
      margin-bottom: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
    }

    .contact-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    

    .contact-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .contact-info {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    /* Floating Action Buttons */
    .floating-buttons {
      position: fixed;
      bottom: 30px;
      z-index: 1000;
    }

    .floating-btn-left {
      left: 30px;
    }

    .floating-btn-right {
      right: 30px;
    }

    .floating-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: white;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }

    .floating-btn:hover {
      transform: scale(1.1);
      color: white;
    }

    .whatsapp-btn {
      background: #25D366;
    }

    .call-btn {
      background: #007bff;
    }

    @keyframes pulse {
      0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      }
      50% {
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
      }
    }

    /* Footer */
    .footer {
      background: #1a1a2e;
      color: white;
      padding: 3rem 0 1rem;
    }

    .footer-text {
      opacity: 0.8;
      margin: 0;
    }
    .bgImgStyle {
        background-size:cover;
        background-repeat:no-repeat;
      }
    /* Responsive */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2rem;
        text-align: center;
      }
      .font-1_2rem{
        font-size: 1.2rem !important;
      }
      .hero-subtitle {
        font-size: 1.1rem;
      }

      .stat-number {
        font-size: 2rem;
      }

      .hero-stats {
        gap: 2rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
      }

      .floating-buttons {
        bottom: 20px;
      }

      .floating-btn-left {
        left: 20px;
      }

      .floating-btn-right {
        right: 20px;
      }
      .category-name {
          font-size: 0.8rem;
          font-weight: 600;
        }

      .stat-number {
            font-size: 36px;
        }

      .feature-card, .process-card {
          margin-bottom: 24px;
      }
      .hero-section{
          min-height:21vh !important;
      }
      .logo-fallback {
          max-width: 5rem;
      }
      .logo-icon
      {
        top:-1rem;
        left: 4rem;
        position: relative;
      }
    }
.rfq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #ffffff, #fafafa);
}

.rfq-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.rfq-subtitle {
  color: #555;
  font-size: 16px;
}

.rfq-form .form-control,
.rfq-form .form-select {
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
}

.rfq-form .form-control:focus,
.rfq-form .form-select:focus {
  border-color: #6a73da;
  box-shadow: 0 0 0 0.15rem rgba(44,83,100,0.2);
}

.rfq-btn {
  background: #6a73da;
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.rfq-btn:hover {
  background: #203a43;
  color:#ffffff;
  transform: translateY(-2px);
}

.rfq-note {
  color: #777;
}
.rfq-alert {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.alert-success {
  background: #e6f4ea;
  border-color: #b7e1c1;
  color: #1e7e34;
}

.alert-danger {
  background: #fdecea;
  border-color: #f5c6cb;
  color: #a71d2a;
}

/* new Design */
  .cta-button {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      padding: 16px 32px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 4px 6px -1px rgba(102,126,234,0.4);
  }

  .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 15px -3px rgba(102,126,234,0.4);
      color: white;
  }

  .cta-button-secondary {
      background: white;
      color: #667eea;
      border: 2px solid #667eea;
      padding: 16px 32px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
  }

  .cta-button-secondary:hover {
      background: #667eea;
      color: white;
      transform: translateY(-2px);
  }

  .stats-section {
            background: #f8fafc;
            padding: 64px 0;
        }

        .stat-card {
            text-align: center;
            padding: 24px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #64748b;
            font-size: 16px;
            font-weight: 500;
            margin-top: 8px;
        }

        .process-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            position: relative;
            height: 100%;
        }

        .process-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 20px;
            margin: 0 auto 20px;
        }

        .incoterm-badge {
            background: #ede9fe;
            color: #6d28d9;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            margin: 8px;
            display: inline-block;
            font-size: 15px;
        }

        .contact-card {
            border-radius: 16px;
            padding: 48px;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
            text-align: center;
        }
   .feature-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            height: 100%;
            text-align:center;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            margin: 0 auto 20px;
        }
         .category-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-left: 4px solid #667eea;
        }

        .category-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
            transform: translateX(8px);
        }

        .category-title {
            font-weight: 700;
            color: #1a1a2e;
            font-size: 20px;
            margin-bottom: 12px;
        }

        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-list li {
            padding: 8px 0;
            color: #0f0f0f;
            font-size: 15px;
            padding-left: 24px;
            position: relative;
        }

        .category-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }


        
        /* Blog page */
    .blog-card {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      border: none;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    }

    .blog-card .card-img-top {
      height: 220px;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .blog-card:hover .card-img-top {
      transform: scale(1.08);
    }

    .card-img-wrapper {
      overflow: hidden;
      position: relative;
    }

    .featured-card {
      border: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .featured-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .featured-card .card-img-top {
      height: 100%;
      min-height: 400px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .featured-card:hover .card-img-top {
      transform: scale(1.05);
    }

    .badge-category {
      font-weight: 500;
      padding: 0.4rem 0.9rem;
      font-size: 0.75rem;
      letter-spacing: 0.02em;
    }

    .navbar {
      backdrop-filter: blur(10px);
      background-color: rgba(255, 255, 255, 0.95) !important;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .btn-primary {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border: none;
      padding: 0.6rem 1.5rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    .btn-outline-primary {
      border: 2px solid #667eea;
      color: #667eea;
      font-weight: 600;
      padding: 0.6rem 1.5rem;
      transition: all 0.3s ease;
    }

    .btn-outline-primary:hover {
      background: #667eea;
      transform: translateY(-2px);
    }

    .newsletter-section {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      position: relative;
      overflow: hidden;
    }

    .newsletter-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
      border-radius: 50%;
    }

    .category-btn {
      border: 2px solid #e9ecef;
      background: white;
      color: #495057;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
    }

    .category-btn:hover, .category-btn.active {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-color: #667eea;
      color: white;
      transform: translateY(-2px);
    }

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .avatar-sm {
      width: 36px;
      height: 36px;
      font-size: 0.9rem;
    }

    .hero-illustration {
      max-width: 500px;
      margin: 0 auto;
    }