/* font-size for large headings */
.fs-custom {
    font-size: clamp(19px,5vw, 30px);
}

/* unique qualitires */
.square {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transform: rotate(45deg);
    background: linear-gradient(0.25turn, var(--bs-primary), var(--bs-secondary));
}

.square .number {
    transform: rotate(-45deg);
}

/* form popup */
.bg-dark-custom {
    background-color: rgb(50, 50, 50);
}

#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
}

.popup-light {
    box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.1);
}

.svg-background {
    background-color: var(--bs-primary);
    border: 4px solid var(--bs-white);
    border-radius: 50%;
    padding: 10px;
}

#formPopup {
    display: none;
    position: fixed;
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bs-secondary);
    border-radius: 8px;
    z-index: 1000;
    text-align: center;
}

/* contact form */
.form-check-input {
    border: var(--bs-border-width) solid #000;
}

.form-check-input:checked {
    background-color: #30151e;
    border-color: #30151e;
}

.contact-form-container {
    background: linear-gradient(0.25turn, var(--bs-primary), var(--bs-secondary));
}

textarea {
    min-height: 200px;
}

.text-black {
    color: #000;
}

.bg-black {
    background-color: #000;
}

.form-control-custom {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    appearance: none;
    background-clip: padding-box;
    border: 1px solid #000;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-custom::placeholder {
    color: var(--bs-white);
}

.form-control-custom:focus {
    outline: 0;
}

/* price list */
.btn-white {
    background-color: #fff;
    color: #000000;
}

.btn-white:hover {
    background-color: rgb(245, 245, 245);
    color: #000000;
}

.price-card {
    background: linear-gradient(0.25turn, var(--bs-primary), var(--bs-secondary));
    margin-left: auto;
    margin-right: auto;
    padding-top: 70px;
    margin-top: 70px;
    position: relative;
    max-width: 350px;
}

.price-container {
    position: absolute;
    top: -70px;
    right: 50%;
    transform: translateX(50%);
    height: 140px;
    width: 200px;
}

/* testimonials */
.text-black {
    color: #000000;
}

.review-card {
    max-width: 350px;
    border-radius: 20px;
}

.review-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    bottom: -50px;
}

.pricing-features {
    padding-bottom: 50px;
}

.testimonial-footer {
    background: linear-gradient(0.25turn, var(--bs-primary), var(--bs-secondary));
    padding-top: 50px;
}

/* hero */
@media (min-width: 992px) {
    .aspect-lg-square {
        aspect-ratio: 2/1;
    }
}

/* header */
.toggler-btn-custom {
    all: unset;
    display: none;
    padding: 4px 7px 4px 7px;
}

.navbar {
    box-shadow: none;
}

.toggler-btn-custom svg {
    color: var(--bs-white);
}

@media (max-width: 991px) {
    .toggler-btn-custom {
        display: inline-block;
    }
}

/* arrow */
.arrow {
    display: inline-block;
    transform: scale(1.3);
    transform-origin: center;
}

/* Hidden checkbox */
.dropdown-toggle {
    display: none;
}

/* Label acts like a link */
.dropdown-label {
    cursor: pointer;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 150px;
    z-index: 100;
}

.dropdown-menu li {
    margin: 0.5rem 0;
}

.dropdown-menu li a {
    color: black;
    text-decoration: none;
}

/* Show dropdown when checkbox is checked */
.dropdown-toggle:checked + .dropdown-label + .dropdown-menu {
    display: block;
}