/* ---------- Heading Section ---------- */
.page-header {
    text-align: center;
    backdrop-filter: blur(4px);
    max-width: 95%;
    margin: 10px auto 50px auto;
    padding: 5px 20px 20px;  
    display: block;  
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 100;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.page-header p {
    color: grey;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    display: block;
    text-align: justify;
}

.title{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 70px;
    max-width: 1000px; 
    margin: 0 auto; 
    /* background-color: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(15px);
    margin-bottom: 50px;
    border-radius: 50px;
}

.title h1{
    font-size: 2rem !important;
}

.sparkle-divider {
  height: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8),
      rgba(180, 180, 180, 0.6),
      rgba(255, 255, 255, 0.8),
      rgba(50, 50, 50, 0.7),
      rgba(255, 255, 255, 0.8));
  background-size: 300% 100%;
  border-radius: 50px;
  margin: 40px auto 40px;
  width: 100%;
}


.input-group-text {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 0px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 0 0 8px;
}

/* Blurred card container (used for each section) */
.sell-business-card {
    background: rgba(255, 255, 255, 0.014);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    color: white;
    padding: 30px;
}

/* Section heading */
.sell-business-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

/* Input fields */
.sell-business-card .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: none; 
    border-radius: 8px;
    color: white;
    padding: 10px;
}

.sell-business-card .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: none;
    outline: none;
    color: white;
}

/* Labels with icons */
.sell-business-card label {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

/* Placeholder color */
.sell-business-card ::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Checkbox label */
.sell-business-card .form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Button */
.sell-business-card .btn {
    padding: 12px;
    font-weight: bold;
    border-radius: 8px;
    background: linear-gradient(90deg,  #00f7ff, #0084ff, #00f7ff);
    animation: sparkle 2s linear infinite;
}

.sell-business-card .btn:hover{
    transform: translateY(-5px);
    background: linear-gradient(135deg, #3759f1, #043aee) !important;
}

.sell-business-image{
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem auto;
    padding: 1.5rem;
    min-height: 200px;
}

.sell-business-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mb-3 {
    margin-bottom: 1.70rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sell-business-card {
        padding: 20px;
        margin: 3rem auto;
    }
    .page-title {
        font-size: 28px !important;
    }

    .page-header p{
        font-size: 17px !important;
        text-align: center;
    }

    .title h1{
        font-size: 22px !important;
    }

    .sell-business-card label{
        display: contents;
    }

    .sell-business-image{
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .title{
        margin: 10px;
        border-radius: 10px;
        height: 50px;
    }

    .title2{
        max-width: 89%;
        width: 89%;
        border-radius: 10px;
        height: 50px;
    }

    .divider-2{
        width: 92%;
    }
    
}
