/* form success POPup */
.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 rgba(255, 255, 255, 0.574);
}

.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-primary);
}

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

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

/* contact form */
.form-check-label {
    cursor: pointer;
}

.form-check-input {
    width: 25px;
    height: 25px;
}

.form-check-input:checked {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-dark) !important;
}

.form-control-custom {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--bs-white);
    appearance: none;
    background-color: var(--bs-secondary);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    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 */
.pricing-card {
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    color: #fff;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.number-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.card-basic {
    background: linear-gradient(to right, var(--bs-primary), var(--bs-secondary));
}

.card-standard {
    background: linear-gradient(to right, var(--bs-primary), var(--bs-secondary));
}

.card-premium {
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
}

.price {
    font-size: 2rem;
    font-weight: bold;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-features {
    margin: 1rem 0;
}

.plan-features p {
    padding: 0.5rem 0;
    margin: 0;
}

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

/* how it works */
.path-card {
    background-color: var(--bs-primary);
    padding: 30px 20px 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.path-icon-wrapper {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.path-icon {
    font-size: 28px;
    color: #fff;
}

.path-header {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.path-body {
    color: var(--bs-white);
}

.border-color {
    border-top-color: var(--bs-dark);
}

.icon-color {
    background-color: var(--bs-dark);
    color: var(--bs-white);
}

/* services */
.circle-decoration {
    position: absolute;
    bottom: 20px;
}

.circle-decoration {
    background-color: #7b7c8150;
}

.services-icon {
    z-index: 100;
    position: relative;
}

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

.about-title {
    font-weight: 900;
    font-size: 3.5rem;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-subtitle {
    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 */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wyMDkyMnwwfDF8c2VhcmNofDV8fGNhcnxlbnwwfHx8fDE3NTMxOTQ1OTB8MA&ixlib=rb-4.1.0&q=80&w=1080') no-repeat center center;
    background-size: cover;
    color: white;
    min-height: 100vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.btn-transparent {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

    .hero-subtitle {
        font-size: 1.8rem;
    }
}

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

body {
    font-family: system-ui, sans-serif;
}

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

/* btn-white */
.btn-white {
    background-color: var(--bs-white);
    color: #000;
}

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