body {
    font-family: 'Afacad', sans-serif;
    margin: 0;
    height: auto;
}
.request-demo-container {
    min-height: 85vh; 
    background: var(--background);
    background-size: var(--background-size);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 1rem;
    box-sizing: border-box;
    overflow: hidden;
}
.request-demo-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 0;
}
.request-demo-container > * {
    position: relative;
    z-index: 1;
}
.demo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--wrapper-padding);
    max-width: 1300px;
    margin: auto;
}  
.demo-left {
    padding: var(--left-padding);
    text-align: center;
    margin-left: var(--demo-left-margin)
}
.demo-right {
    width: var(--right-width);
    height: max-content;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-left: var(--demo-right-margin);
} 
.demo-left h2,
.demo-right h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.demo-left p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #444;
    width: var(--demo-left-pwidth);
    justify-self: var(--demo-left-pjustify);
}  
.demo-images {
    gap: 1rem;
    width: var(--demo-img-width);
    padding: 10px;
    display: flex;
    margin: 0 auto 1rem auto; 
    background: white;
    margin-bottom: 2rem;
    border-radius: 12px;
    justify-content: center;
    box-shadow: 0px 1px 4px 2px #00000040;
}
.demo-images img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}  
.ratings {
    display: flex;
    gap: 1.4rem;
    margin-bottom: 0.5rem;
    justify-content: center;

}  
.ratings div {
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
}
.ratings strong {
    font-size: 14px;
    color: var(--primary-color);
}  
.demo-right > p {
    margin-bottom: 25px;
    font-size: var(--demo-right-pfont);
}
.demo-right form {
    display: flex;
    flex-direction: column;
}  
.demo-right input {
    position: relative;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}  
.demo-right button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.9rem;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}  
.demo-right button:hover {
    background-color: var(--primary-color);
}  
.process-box {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    box-shadow: 2px 2px 7px 0 #00000057;
}
.process-left:after {
    content: "";
    border-top: 15px solid #ffffff;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff;
    display: inline-grid;
    position: absolute;
    right: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: 3px -2px 3px 0px #00000036;
    z-index: 1;
}
.process-right:after {
    content: "";
    border-top: 15px solid #ffffff00;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff00;
    display: inline-grid;
    position: absolute;
    left: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: -1px 1px 3px 0px #0000001a;
    z-index: 1;
}
.process-step {
    background: var(--primary-color);
    text-align: center;
    width: 80%;
    margin: 0 auto;
    color: #fff;
    height: 100%;
    padding-top: 8px;
    position: relative;
    top: -26px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: -6px 8px 0px 0px #00000014;
}
.process-point-right {
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid var(--primary-color);
    box-shadow: 0 0 0px 4px #5c5c5c;
    margin: auto 0;
    position: absolute;
    bottom: 40px;
    left: -63px;
}
.process-point-right:before {
    content: "";
    height: 144px;
    width: 11px;
    background: #5c5c5c;
    display: inline-grid;
    transform: rotate(36deg);
    position: relative;
    left: -50px;
    top: 1px;
}
.process-point-left {
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid var(--primary-color);
    box-shadow: 0 0 0px 4px #5c5c5c;
    margin: auto 0;
    position: absolute;
    bottom: 40px;
    right: -63px;
}
.process-point-left:before {
    content: "";
    height: 144px;
    width: 11px;
    background: #5c5c5c;
    display: inline-grid;
    transform: rotate(-38deg);
    position: relative;
    left: 50px;
    top: 0px;
}
.process-last:before {
    display: none;
}
.process-box p {
    z-index: 9;
}
.process-step p {
    font-size: 20px;
}
.process-step h2 {
    font-size: 39px;
}
.process-step:after {
    content: "";
    border-top: 8px solid #04889800;
    border-bottom: 8px solid var(--primary-color);
    border-left: 8px solid #04889800;
    border-right: 8px solid var(--primary-color);
    display: inline-grid;
    position: absolute;
    left: -16px;
    top: 0;
}
.process-step:before {
    content: "";
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid var(--primary-color);
    border-left: 8px solid var(--primary-color);
    border-right: 8px solid #ff000000;
    display: inline-grid;
    position: absolute;
    right: -16px;
    top: 0;
}
.process-line-l {
    background: var(--primary-color);
    height: 4px;
    position: absolute;
    width: 128px;
    right: -147px;
    top: 61px;
    z-index: 9;
}
.process-line-r {
    background: var(--primary-color);
    height: 4px;
    position: absolute;
    width: 128px;
    left: -147px;
    top: 61px;
    z-index: 9;
}
.permission {
    display: flex; 
    align-items: center; 
    margin-bottom: 1rem;
    padding: 0rem 0.2rem; 
}
.permission-txt {
    margin: 0;
    font-size: 14px; 
    font-weight: 300; 
    color: #5d5d5d; 
}
.suggestions-box {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-height: 10rem;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    margin-top: -12px;
    width: 31%;
    font-size: 14px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s;
}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f1f1f1;
}
.country {
    width: 100%
} 
 .phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}
.countryCode {
    min-width: 60px;
    max-width: 80px;
    padding: 0.65rem;
    background: white;
    flex-shrink: 0;
    display: none; 
}
.mobilenumber {
    padding: 0.65rem;
    width: 100%;
    flex: 1;
}
@media (max-width: 768px) {
    .demo-wrapper {
        gap: 0.5rem;
        padding: 1.5rem;
        flex-direction: column;
    }
    .demo-left {
        width: 100%;
        text-align: center;
        padding: 1.5rem 0.25rem;
        margin-left: var(--mobile-demo-margin)
    }
    .demo-right {
        width: 100%;
        text-align: center;
        padding: 1.75rem 1rem;
        margin-left: var(--mobile-demo-margin)
    }
    .demo-left h2,
    .demo-right h2 {
        font-size: 1.65rem;
    }
    .demo-left p {
        font-size: 1.1rem;
        width: var(--mobile-demo-pleft);
    }
    .ratings {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
    .ratings div {
        font-size: 12px;
        padding: 0.4rem;
    }
    .ratings strong {
        font-size: 11px;
    }
    .demo-images {
        width: 100%;
        padding: 5px;
        margin-bottom: 1.25rem;
    }  
    .demo-images img {
        height: auto;
        max-height: 250px;
    }
    .permission-txt {
        font-size: 12px;
        text-align: left;
    }
    .suggestions-box {
        width: 78%; 
        text-align: left;
    }
}
@media (min-width: 769px) {
    .suggestions-box {
        max-width: unset; 
        min-width: unset; 
    }
}