.text-black {
    color: black;
}

/* form success POPup */
#btn-close-popup2 {
    top: 5px;
    right: 5px;
}

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

#btn-close-popup {
    font-size: 25px;
}

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

.popup-light {
    border-radius: 50%;
    box-shadow: 0px 10px 30px #ffffff;
}

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

#formPopup {
    display: none;
    position: fixed;
    width: 450px;
    aspect-ratio: 1/1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bs-secondary);
    z-index: 1000;
    text-align: center;
    border: 2px solid var(--bs-white);
}

@media (max-width: 490px) {
    #formPopup {
        width: 90%;
    }

    #btn-close-popup {
        font-size: 15px;
    }
}

/* about page */
.timeline-step {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}

.timeline-step::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 25px;
    background: var(--bs-primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--bs-primary);
}

.timeline-content {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .timeline-step {
        padding-left: 3rem;
    }

    .timeline-step::before {
        left: 1rem;
    }

    .timeline-step::after {
        left: 0.4rem;
    }
}

/* price list */
.pricing-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 1rem;
    padding-top: 2rem;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
    z-index: 2;
}

.ribbon {
    position: absolute;
    top: 1rem;
    left: -2.5rem;
    background: var(--bs-primary);
    color: #fff;
    padding: 0.2rem 2rem;
    transform: rotate(-45deg);
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.price {
    font-size: 3rem;
    font-weight: 900;
}

.card-top {
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
    padding: 1.5rem;
    color: white;
    font-weight: bold;
    text-align: center;
}

.btn-buy {
    border-radius: 999px;
    font-weight: bold;
    width: 100%;
}

.feature-list {
    margin: 1rem 0;
}

@media (max-width: 767px) {
    .price {
        font-size: 2.2rem;
    }
}

/* reviews */
.img-reviews {
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

/* services */
.aspect-1x1 {
    aspect-ratio: 1/1;
}

/* services steps */
.border-radius-50 {
    border-radius: 50%;
}

/* about */
:root {
    --primary-accent: var(--bs-secondary);
    --secondary-accent: var(--bs-dark);
}

.about-title {
    font-weight: 900;
    font-size: 3.5rem;
    background: linear-gradient(
    45deg,
    var(--primary-accent),
    var(--secondary-accent)
  );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-subtitle {
    color: var(--primary-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-subtitle::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(
    to right,
    var(--primary-accent),
    var(--secondary-accent)
  );
    bottom: -8px;
    left: 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
}

.main-image {
    position: absolute;
    width: 70%;
    height: 60%;
    top: 0;
    right: 0;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
    transition: all 0.4s ease;
    z-index: 2;
}

.secondary-image {
    position: absolute;
    width: 50%;
    height: 40%;
    bottom: 0;
    left: 0;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.15);
    transform: rotate(-5deg);
    transition: all 0.4s ease;
    z-index: 1;
    border: 5px solid white;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(
    45deg,
    var(--primary-accent),
    var(--secondary-accent)
  );
    border-radius: 50%;
}

@media (max-width: 992px) {
    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

    .main-image {
        width: 80%;
        height: 50%;
    }

    .secondary-image {
        width: 60%;
        height: 35%;
    }
}

/* hero */
.content-wrapper {
    position: relative;
    z-index: 3;
    padding: 60px 0;
}

.image-container {
    position: relative;
    margin-left: -100px;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: -30px 30px 0px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    border: 8px solid white;
}

.shape-overlay {
    border-radius: 20px;
    box-shadow: -30px 30px 0px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
    background-image: url(https://images.pexels.com/photos/4892130/pexels-photo-4892130.jpeg?auto=compress&cs=tinysrgb&w=600&lazy=load);
    background-size: cover;
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--bs-dark);
}

.hero-title span {
    color: var(--bs-secondary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--bs-primary);
    z-index: -1;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bs-secondary);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
    max-width: 500px;
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .image-container {
        margin-left: -50px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .organic-shape {
        width: 600px;
        height: 600px;
        top: -200px;
        right: -200px;
    }

    .image-container {
        margin-left: 0;
        margin-top: 50px;
    }

    .main-image {
        width: 100%;
        transform: rotate(0);
    }

    .shape-overlay {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .organic-shape,
    .dynamic-line {
        display: none;
    }

    .content-wrapper {
        text-align: center;
        padding: 40px 0;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-container {
        justify-content: center;
    }
}

/* header */
.toggler-btn-custom {
    all: unset;
    display: none;
    padding: 4px 7px 4px 7px;
    border-radius: 5px;
    border: 1px solid var(--bs-dark);
}

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

@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;
}
