/*NEW STYPES*/
.navbar {
  background-color: #003366;
}

.navbar-nav .nav-link {
  text-transform: uppercase;
  color: #ffffff;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #ffcc00;
}

.hero-btn, .cta-btn, .btn {
  background-color: #0066cc;
  color: #ffffff;
  border: none;
}

.hero-btn:hover, .cta-btn:hover, .btn:hover {
  background-color: #004c99;
  color: #ffffff;
}

.card {
  background-color: #ffffff;
  color: #212529;
  padding: 1rem;
  border: 1px solid #dee2e6;
}

.card h3,
.card p {
  color: #212529;
}

.breadcrumb-item a,
.breadcrumb-item.active {
  color: #333333;
}



/*END*/


   h2 {
      margin-bottom: 1.2rem;
      color: #222;
    }


    input[type="file"] {
      margin-bottom: 1rem;
      padding: 0.6rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      width: 100%;
      cursor: pointer;
    }

    #preview {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 1rem;
      max-height: 150px;
      overflow: hidden;
    }

    .preview-img {
  height: 100px;
  margin: 5px;
  object-fit: contain;
  border: 1px solid #ddd;
  padding: 4px;
  border-radius: 6px;
}


    button {
      background: linear-gradient(to right, #4CAF50, #45a049);
      color: white;
      padding: 0.8rem 1.6rem;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    button:hover {
      background: linear-gradient(to right, #45a049, #3e9140);
      transform: scale(1.03);
    }

.navbar-nav .nav-link {
    text-transform: uppercase;
    color: white !important;
  }

  .navbar-nav .nav-link.active {
    color: #ffc107 !important; /* Bootstrap success color */
  }


/*Styles for why choose our  tools*/
  .feature-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    transition: all 0.3s ease-in-out;
    text-align: center;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
    font-size: 2.8rem;
    color: #0d6efd;
    margin-bottom: 1rem;
  }

  .feature-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #212529;
    margin-bottom: 0.5rem;
  }

  .feature-desc {
    font-size: 0.95rem;
    color: #6c757d;
  }
/*Styles of how it works*/
  .step-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    padding: 1.8rem 1.5rem;
  }

  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .step-icon {
    font-size: 2.2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
  }

  .step-badge {
    background: #0d6efd;
    color: #fff;
    font-size: 1.1rem;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .step-title {
    font-weight: 600;
    font-size: 1.15rem;
    color: #212529;
    margin-top: 0.5rem;
  }

  .step-desc {
    font-size: 0.95rem;
    color: #555;
  }

  .section-subtext {
    font-size: 0.9rem;
    color: #6c757d;
  }

/*Start Resizing*/
  .floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 12px rgba(13, 110, 253, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
  }

/*Hide starting reduce*/
  @media (max-width: 576px) {
    #scroll-btn {
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
      bottom: 15px;
      right: 15px;
    }
  }
