/* Login page  */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body{
    padding: 0 0 0 0;
}
.logo img{
    width: 120px;
}

.ls-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    overflow: hidden;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.ls-form-section {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: white;
}

.ls-form-container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.ls-title {
    text-align: left;
    margin-bottom: 2rem;
    color: #333;
}

.ls-title + span {
    display: block;
    margin-bottom: 2rem;
    color: #666;
}

.ls-form-group {
    margin-bottom: 1.5rem;
}

.ls-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

.ls-form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.ls-form-group label[for="email"] {
    color: #000;
}

.ls-form-group label[for="password"] {
    color: #000;
}

.ls-submit-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: #ea424d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.ls-image-section {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 100px;
}

.ls-image-section img {
    width: 864px;
    height: 875px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-left-radius: 100px;
}

.ls-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
}

.ls-link {
    text-align: center;
    margin-top: 1rem;
}

.ls-link a {
    color: #4CAF50;
    text-decoration: none;
}

.ls-link a:hover {
    text-decoration: underline;
}

.ls-forgot-password {
    text-align: left;
    margin-bottom: 1rem;
}

.ls-forgot-password a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
}

.ls-forgot-password a:hover {
    color: #333;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ls-container {
        flex-direction: column;
    }

    .ls-image-section {
        display: none;
    }

    .ls-form-section {
        padding: 1rem;
    }
    .logo img{
    width: 75px;
}
}



/* signup page  */

.Signup-sr-container {
    display: flex;
    min-height: calc(100vh - 200px);
    width: 100%;
    position: relative;
    /* overflow: hidden; */
    gap: 0;
}

.Signup-sr-signin-section {
    flex: 0 0 50%;
    padding: 2rem;
    background-color: #f5f5f5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: 50%;
    min-height: 100vh;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.Signup-sr-signin-section::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.Signup-sr-register-section {
    flex: 0 0 50%;
    padding: 0rem 2rem;
    background-color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    width: 50%;
    min-height: 100vh;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    margin-left: -15px;
}

.Signup-sr-register-section::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.Signup-sr-form-container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.Signup-sr-register-container {
    width: 100%;
    max-width: 700px;
    padding: 2rem 1.5rem 2rem 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 0rem 0rem;
}

.Signup-sr-title {
    text-align: left;
    margin-bottom: 1rem;
    color: #000;
    font-weight: bold;
    font-size: 24px;
}

.Signup-sr-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.Signup-sr-form-group {
    margin-bottom: 1.5rem;
}

.Signup-sr-form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
}

.Signup-sr-form-group input,
.Signup-sr-form-group select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.Signup-sr-form-group input:focus {
    outline: none;
    border-color: #8B0000;
}

.Signup-sr-remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.Signup-sr-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.Signup-sr-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.Signup-sr-remember label {
    color: #666;
    font-size: 0.9rem;
}

.Signup-sr-forgot {
    text-align: right;
}

.Signup-sr-forgot a {
    color: #e63131;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
}

.Signup-sr-forgot a:hover {
    text-decoration: underline;
    color: #8B0000;
}

.Signup-sr-submit-btn {
    width: 100%;
    padding: 0.7rem;
    background-color: #e63131;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.Signup-sr-switch-form {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #666;
}

.Signup-sr-switch-form a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
}

.Signup-sr-switch-form a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
    .Signup-sr-container {
        flex-direction: column;
        overflow: visible;
    }

    .Signup-sr-signin-section,
    .Signup-sr-register-section {
        width: 100%;
        margin-left: 0;
        padding: 1rem;
    }

    .Signup-sr-form-container,
    .Signup-sr-register-container {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .Signup-sr-register-container {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .Signup-sr-form-row {
        margin-bottom: 1.5rem;
    }

    .Signup-sr-register-section {
        margin-left: 0;
        padding: 1rem;
    }

    .Signup-sr-banner {
        height: 150px;
    }
    
    .Signup-sr-container {
        min-height: calc(100vh - 150px);
    }
}

@media (max-width: 480px) {
    .Signup-sr-remember-forgot {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .Signup-sr-forgot {
        text-align: left;
       
    }
}

.Signup-sr-form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-right: 0.2rem;
}

.Signup-sr-form-row .Signup-sr-form-group {
    flex: 1;
    margin-bottom: 0;
    min-width: 280px;
}

@media (max-width: 600px) {
    .Signup-sr-form-row {
        flex-direction: column;
        gap: 1.2rem;
        margin-bottom: 1.8rem;
    }
}

.Signup-sr-form-group input,
.Signup-sr-form-group select,
.Signup-sr-form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    outline: none;
}

.Signup-sr-form-group select:focus {
    outline: none;
    border-color: #8B0000;
}

.Signup-sr-form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
}

.Signup-sr-social-title {
    text-align: center;
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.Signup-sr-social-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
}

.Signup-sr-social-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding: 0.5rem;
}

.Signup-sr-social-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
    padding: 0.5rem;
}

.Signup-sr-social-icon-circle {
    width: 45px;
    height: 45px;
    background-color: #959292;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.Signup-sr-social-icon i {
    font-size: 20px;
    color: white;
}

.Signup-sr-social-name {
    font-size: 0.85rem;
    color: #666;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .Signup-sr-social-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .Signup-sr-social-icon {
        gap: 0.5rem;
    }
    
    .Signup-sr-social-name {
        font-size: 0.8rem;
    }
}

.Signup-sr-photo-upload {
    margin: 1rem 0 2rem 0;
    text-align: left;
}

.Signup-sr-photo-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1rem;
}

.Signup-sr-photo-preview {
    width: 200px;
    height: 200px;
    border: 2px dashed #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.Signup-sr-photo-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    height: 200px;
    padding-left: 5px;
}

.Signup-sr-photo-controls > div {
    margin-bottom: 10px;
}

.Signup-sr-photo-upload label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.dimensions{
    margin-top: -5px;
    padding-left: 15px;
}
.Signup-sr-photo-upload .dimensions {
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
    margin-bottom: 73px;
}

.Signup-sr-photo-upload input[type="file"] {
    display: none;
}

@media (max-width: 600px) {
    .Signup-sr-photo-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.Signup-sr-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.Signup-sr-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}


/* sign up 2.0 */


.ls-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.ls-form-section {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: white
    ;
}

.ls-form-container {
    width: 100%;
    max-width: 400px;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.ls-title {
    text-align: left;
    margin-bottom: 0.5rem;
    color: #333;
}

.ls-title + span {
    display: block;
    margin-bottom: 1rem;
    color: #666;
}

.ls-form-group {
    margin-bottom: 0.8rem;
}

.ls-form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: #555;
}

.ls-form-group input,
.ls-select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.ls-submit-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: #f4474c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.ls-image-section {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 100px;
}

.ls-image-section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-left-radius: 100px;
}

.ls-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;

}

.ls-link {
    text-align: center;
    margin-top: 1rem;
}

.ls-link a {
    color: #4CAF50;
    text-decoration: none;
}

.ls-link a:hover {
    text-decoration: underline;
}

.ls-form-group label[for="name"],
.ls-form-group label[for="password"],
.ls-form-group label[for="confirm-password"],
.ls-form-group label[for="email"] {
    color: #000;
}

.ls-select:focus {
    outline: none;
    border-color: #f09b12;
}

.ls-form-group label[for="role"] {
    color: #000;
}

@media (max-width: 800px) {
    .ls-container {
        flex-direction: column;
        min-height: auto;
    }

    .ls-form-section {
        flex: 0 0 100%;
        padding: 1rem;
        order: 1;
    }

    .ls-image-section {
        flex: 0 0 400px;
        display: block;
        order: 2;
        position: relative;
        border-bottom-left-radius: 0;
        border-top-left-radius: 100px;
    }

    .ls-image-section img {
        position: relative;
        height: 400px;
        border-bottom-left-radius: 0;
        border-top-left-radius: 100px;
    }

    .ls-form-container {
        max-width: 100%;
        margin: 1rem auto;
    }
}

@media (max-width: 480px) {
    .ls-image-section {
        flex: 0 0 300px;
    }

    .ls-image-section img {
        height: 300px;
    }
}



/* ----contact page---- */

.contact-header-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.contact-header-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.contact-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.contact-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}


.contact-container-vs {
    max-width: 400px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card-vs {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease;
}

.contact-card-vs:hover {
    transform: translateY(-5px);
}

.contact-card-vs h2 {
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}


.read{
    margin-bottom: 30px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.form-group-container {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 18px;
}
.message-group {
    width: 100%;
    margin-bottom: 30px;
}

.message-group textarea {
     width: 100%;
     height: 150px;
     resize: vertical;
}


.form-group {
    margin-bottom: 20px;
    position: relative;
    width: 46%;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
    font-weight: normal;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}



.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form-group textarea {
    width: 100%;
    height: 150px;
    resize: vertical;
    /*margin-bottom: 30px;*/
}


.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.send-btn {
    background: #f4474c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 40%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.send-btn:hover {
    background: #f4474c;
    transform: translateY(-2px);
}

.send-btn:active {
    transform: translateY(0);
}

.send-btn.loading {
    background: #6c757d;
    cursor: not-allowed;
}

.send-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: #007bff;
    font-size: 20px;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.success-message {
    background: #28a745;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        margin: 20px auto;
    }

    .contact-card {
        padding: 20px;
    }



    .contact-card-vs {
        padding: 20px;
    }



    .contact-image {
        height: 150px;
    }

    .map-container {
        height: 250px;
    }
    .form-group-container {
        /*display: grid;*/
        /*grid-template-columns: 1fr;*/
        gap: 0px;
        margin-bottom: 0px;
    }
    .form-group {
        margin-bottom: 15px;
        width: 100%;
        position: relative;
    }
    .send-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px 0;
    }

    .contact-container {
        padding: 0 10px;
    }

    .contact-card {
        padding: 15px;
    }


    .contact-card-vs {
        padding: 15px;
    }


    .form-group input
    {
        padding: 8px;
        font-size: 14px;
    }
    .form-group textarea {
        padding: 8px;
        font-size: 14px;
        margin: 0px;
    }
}




/* Privacy Policy ----- */

.privacy-vs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.privacy-vs-header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.privacy-vs-privacy-content {
    padding: 40px 0;
}

.privacy-vs-section {
    margin-bottom: 30px;
}

.privacy-vs-section-title {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

.privacy-vs-section-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-vs-list {
    list-style-type: disc;
    margin-left: 20px;
}

.privacy-vs-list-item {
    color: #666;
    margin-bottom: 10px;
}

.privacy-vs-footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
.Subscribe {
    border-bottom: 2px solid #ff6961;
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 13px;
}
.Subscribe input{
    background: transparent;
    border:0px;
}
@media screen and (max-width: 768px) {
    .privacy-vs-container {
        padding: 15px;
    }

    .privacy-vs-section-title {
        font-size: 20px;
    }

    .privacy-vs-section-text {
        font-size: 14px;
    }
}


/* ------Terms and Conditions ------*/

.av-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header */
.av-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.av-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.av-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Content */
.av-content {
    padding: 0 1rem;
}

.av-section {
    margin-bottom: 2.5rem;
}

.av-section-title {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.av-text {
    margin-bottom: 1rem;
    color: #444;
}

/* Lists */
.av-list {
    list-style-position: inside;
    margin-left: 1rem;
}

.av-list-item {
    margin-bottom: 0.5rem;
    color: #444;
}

/* Footer */
.av-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
    text-align: center;
}

.av-footer-text {
    color: #666;
    font-size: 0.9rem;
}

/* Back to Top Button */
.av-back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #2c3e50;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    font-size: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.av-back-to-top:hover {
    background-color: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.av-back-to-top:active {
    transform: translateY(1px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .av-container {
        padding: 1rem;
        margin: 1rem;
    }

    .av-title {
        font-size: 2rem;
    }

    .av-section-title {
        font-size: 1.5rem;
    }

    .av-content {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .av-container {
        margin: 0.5rem;
        padding: 0.8rem;
    }

    .av-title {
        font-size: 1.8rem;
    }

    .av-section-title {
        font-size: 1.3rem;
    }

    .av-text, .av-list-item {
        font-size: 0.95rem;
    }
}

/* Print styles */
@media print {
    .av-container {
        box-shadow: none;
        padding: 0;
    }

    body {
        background-color: #fff;
    }

    .av-footer {
        display: none;
    }
} 





/* About us page ------ */
.AU-hero {
    position: relative;
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.AU-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.AU-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.AU-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.AU-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Stats Section */
.AU-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    background: white;
    transform: translateY(-50px);
    margin: 0 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.AU-stat-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.AU-stat-card:hover {
    transform: translateY(-5px);
}

.AU-stat-icon {
    width: 70px;
    height: 70px;
    background: #ff5a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.AU-stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.AU-stat-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.AU-stat-content p {
    color: #666;
}

/* Story Section */
.AU-story {
    padding: 6rem 2rem;
    background: white;
}

.AU-story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.AU-story-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.AU-story-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

.AU-story-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.AU-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.AU-feature i {
    color: #ff5a5f;
}

.AU-story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Team Section */
.AU-team {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.AU-team h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.AU-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.AU-team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.AU-team-member:hover {
    transform: translateY(-5px);
}

.AU-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.AU-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.AU-team-member:hover .AU-member-image img {
    transform: scale(1.1);
}

.AU-member-info {
    padding: 1.5rem;
}

.AU-member-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.AU-member-info p {
    color: #666;
    margin-bottom: 1rem;
}

.AU-member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.AU-member-social a {
    color: #666;
    transition: color 0.3s ease;
}

.AU-member-social a:hover {
    color: #ff5a5f;
}

/* Values Section */
.AU-values {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.AU-values h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.AU-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.AU-value-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.AU-value-card:hover {
    transform: translateY(-5px);
}

.AU-value-card i {
    font-size: 2.5rem;
    color: #ff5a5f;
    margin-bottom: 1rem;
}

.AU-value-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.AU-value-card p {
    color: #666;
}

/* Contact Section */
.AU-contact {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.AU-contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.AU-contact h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.AU-contact p {
    color: #666;
    margin-bottom: 2rem;
}

.AU-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.AU-form-group input,
.AU-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.AU-form-group textarea {
    height: 150px;
    resize: vertical;
}

.AU-form-group input:focus,
.AU-form-group textarea:focus {
    outline: none;
    border-color: #ff5a5f;
}

.AU-submit-btn {
    padding: 1rem 2rem;
    background: #ff5a5f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.AU-submit-btn:hover {
    background: #ff4448;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .AU-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .AU-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .AU-story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .AU-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .AU-hero h1 {
        font-size: 2.5rem;
    }

    .AU-stats {
        margin: 0 1rem;
        padding: 2rem 1rem;
    }

    .AU-story,
    .AU-team,
    .AU-values,
    .AU-contact {
        padding: 4rem 1rem;
    }

    .AU-team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .AU-hero h1 {
        font-size: 2rem;
    }

    .AU-stats {
        grid-template-columns: 1fr;
    }

    .AU-values-grid {
        grid-template-columns: 1fr;
    }

    .AU-story-text h2,
    .AU-team h2,
    .AU-values h2,
    .AU-contact h2 {
        font-size: 2rem;
    }
} 





/* single property detail page ----- */
/* Reset and Base Styles */


/* Main Container */
.LD-main {
    width: 100%;
    max-width: 1400px;
    margin: 0px auto;
    background: #fff;
}

.LD-container {
    /* padding: 30px; */
    /* max-width: 1200px; */
    margin: 0 auto;
}

/* Property Images */
.LD-property-images {
    width: 100%;
    background: #fff;
    display: flex;
    height: 600px;
}

.LD-main-image-container {
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.LD-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.LD-grid-images {
    width: 40%;
    height: 100%;
    display: flex;
    /*flex-direction: column;*/
}

.LD-grid-row {
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    flex-wrap: wrap;
}

.LD-grid-row:first-child {
    margin-bottom: 2px;
}

.LD-grid-image {
    width: 48%;
    height: 50%;
    object-fit: cover;
}

.LD-grid-image:first-child {
    margin-left: 2px;
}

/* Property Header */
.LD-property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 25px; */
    padding: 0;
}

.LD-property-title h1 {
    font-size: 30px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.3;
     text-transform: capitalize;
}

.LD-address {
    color: #666;
    font-size: 16px;
    margin: 0px;
     text-transform: capitalize;
}

.LD-property-price {
    text-align: right;
}

.LD-property-price h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 4px;
    font-weight: 500;
}

.LD-property-price p {
    color: #666;
    font-size: 14px;
}

/* Property Overview */
.LD-property-overview {
    display: flex;
    gap: 20;
    margin-bottom: 30px;
    padding: 12px 15px;
    /* background: #f8f9fa; */
    border-radius: 4px;
    justify-content: start;
}

.LD-overview-item {
    padding: 0 20px;
    /* border-right: 1px solid #e1e1e1; */
}

.LD-overview-item:first-child {
    padding-left: 5px;
}

.LD-overview-item:last-child {
    border-right: none;
    padding-right: 5px;
}

.LD-overview-item .LD-label {
    color: #7d7d7d;
    font-size: 14px;
    font-weight: 500;
}
/* 
.LD-overview-item:first-child .LD-label {
    color: #EE5E5E;
} */

.LD-show-more{
    text-decoration: none;
}

/* Content Layout */
.LD-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 20px;
    align-items: start;
}

/* Main Content */
.LD-main-content {
    background: #fff;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.05); */
    height: 100%;
    /* width: 70%; */

}

.LD-main-content section {
    padding: 30px 0px;
    border-bottom: 1px solid #eee;
}

.LD-main-content section:last-child {
    border-bottom: none;
}

.LD-description h3,
.LD-property-details h3,
.LD-features h3,
.LD-location h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.LD-description p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    /*overflow: hidden;*/
    /*max-height: 100px;*/
}

.LD-description{
    height: auto;
}

.LD-show-more {
    display: inline-block;
    color: #ff5a5f;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.LD-show-more:hover {
    color: #ff4448;
}

/* Property Details */
.LD-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
}

.LD-detail-item {
    display: flex;
    justify-content: start;
    padding: 12px 0;
    /* border-bottom: 1px solid #eee; */
}

.LD-detail-item .LD-label {
    color: #666;
    width: 50%;
    font-size: 14px;
}

.LD-detail-item span:last-child {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Location */
.LD-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.LD-location-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.LD-location-item .LD-label {
    color: #181818;
    font-weight: 500;
    font-size: 14px;
}

.LD-location-item span:last-child {
    color: #767676;
    font-weight: 500;
    font-size: 14px;
}

/* Features */
.LD-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.LD-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

.LD-feature-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.LD-feature-item i {
    font-size: 1.1rem;
    color: #666;
}

.LD-feature-item span {
    color: #333;
    font-size: 14px;
}

/* Sidebar */
.LD-sidebar {
    position: sticky;
    top: 20px;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.LD-contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 33px rgba(0,0,0,0.05);
}

.LD-contact-form h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.LD-agent-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
}

.LD-agent-photo-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.LD-agent-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.LD-agent-details {
    flex: 1;
}

.LD-agent-details h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 500;
}

.LD-agent-details p {
    color: #666;
    font-size: 0.9rem;
}

.LD-view-listings {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #EE5E5E;
    text-decoration: none;
    font-size: 0.9rem;
}

.LD-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.LD-form-group {
    position: relative;
}

.LD-form input,
.LD-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #666;
    background: #fff;
}

.LD-form input::placeholder,
.LD-form textarea::placeholder {
    color: #999;
}

.LD-form textarea {
    height: 120px;
    resize: none;
}

.LD-form-footer {
    margin-top: 10px;
}

.LD-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.LD-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.LD-checkbox span {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.LD-submit {
    width: 100%;
    padding: 12px;
    background: #EE5E5E;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.LD-submit:hover {
    background: #e54a4a;
}

/* Location Map Section */
.LD-map-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 33px rgba(0,0,0,0.05);
    /* order: -1; */
}

.LD-map-section h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.LD-map-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.LD-map-address i {
    color: #EE5E5E;
    font-size: 16px;
}

.LD-map-address span {
    color: #666;
    font-size: 14px;
}

.LD-map {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.LD-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .LD-content-wrapper {
        grid-template-columns: 1fr;
        padding: 0px 15px;
    }
    .LD-sidebar {
        position: static;
        height: auto;
    }
    
    .LD-details-grid,
    .LD-location-grid,
    .LD-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .LD-property-header {
        flex-direction: column;
        gap: 20px;
        padding: 0px 15px ;
    }
    
    .LD-property-overview {
        flex-wrap: wrap;
        margin: 0px;
        padding: 12px 0px;
    }
    
    .LD-overview-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
        width: 50%;
        padding: 0px;
    }
    
    .LD-details-grid,
    .LD-location-grid,
    .LD-features-grid {
        gap: 5px;
    }
    
    .LD-property-images {
        height: 400px;
        padding: 0px 15px;
    }
    
    .LD-feature-item {
        padding: 12px;
    }
    
    .LD-feature-icon {
        width: 40px;
        height: 40px;
    }
    .LD-main-content section {
        padding: 17px 0px;
        border-bottom: 1px solid #eee;
    }
    .LD-overview-item:first-child {
        padding-left: 0px;
    }
    .LD-grid-images {
    width: 48%;
}
}

@media (max-width: 480px) {
    .LD-container {
        padding: 15px;
    }
    
    .LD-property-title h1 {
        font-size: 1.5rem;
    }
    
    .LD-property-price h2 {
        font-size: 1.5rem;
    }
    
    .LD-property-images {
        flex-direction: column;
        height: auto;
    }

    .LD-main-image-container {
        width: 100%;
        height: 250px;
        /*padding: 10px;*/
        margin-bottom: 5px;
    }
    .LD-main {
    margin: 10px auto;
        }

    .LD-grid-images {
        width: 100%;
        /*height: 200px;*/
    }

    .LD-details-grid,
    .LD-location-grid
    {
        grid-template-columns: 1fr;
    }
  
    .LD-features-grid {
        grid-template-columns: 2;
    }
    
    .LD-location-item span {
        font-size: 0.9rem;
    }

    .LD-feature-item {
        padding: 10px;
    }
    
    .LD-feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .LD-feature-item span {
        font-size: 0.9rem;
    }
} 


_____footer styles_____
.footer-classname-container {
    background-color: #F9F9FB;
    padding: 30px;
    color: #333;
    /* margin: 0px 40px; */
}

.footer-classname-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    width: 86%;
    margin:auto;
}

.footer-classname-logo {
    height: 50px;
}
.footer-classname-social{
 display: flex;
    gap: 15px;

}
.footer-classname-social a {
    margin-left: 10px;
    text-decoration: none;
    font-size: 25px;
    color: #333;

}
    

/* Footer Main Section */
.footer-classname-main {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-classname-subscribe h3,
.footer-classname-links h3,
.footer-classname-contact h3,
.footer-classname-address h3,
.footer-classname-app h3 {
    margin-bottom: 10px;
}
.footer-classname-address p {
    color: #1F4B43;
}
/*.footer-classname-subscribe input {*/
/*    width: 200px;*/
/*    padding: 8px;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 5px;*/
/*}*/

.footer-classname-send {
    background-color: #ff6961;
    border: none;
    color: white;
    padding: 8px 33px;
    border-radius: 30px;
    cursor: pointer;
}

.footer-classname-links ul {
    list-style: none;
    display: flex;
    padding: 0;
    gap: 9px;
    flex-direction: column;
}

.footer-classname-links ul li {
    margin-bottom: 5px;
}

.footer-classname-links ul li a {
    text-decoration: none;
    color: #1F4B43;
    font-size: 15px;
}
.footer-classname-contact p {
    color: #1F4B43;
}
.footer-classname-app-btn {
    display: block;
    background-color: #204e37;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

/* Footer Bottom */
.footer-classname-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-classname-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-classname-subscribe input {
        width: 100%;
    }
    .footer-classname-links{
    width: 100%;
    text-align: start;
    }
    .footer-classname-contact{
    width: 100%;
    text-align: start;
    }
    .footer-classname-address{
    width: 100%;
    text-align: start;
    }
    
}



/* Privacy policy_____ */
.vs-privacy--container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.vs-privacy--header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.vs-privacy--privacy-content {
    padding: 40px 0;
}

.vs-privacy--section {
    margin-bottom: 30px;
}

.vs-privacy--section-title {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

.vs-privacy--section-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.vs-privacy--list {
    list-style-type: disc;
    margin-left: 20px;
}

.vs-privacy--list-item {
    color: #666;
    margin-bottom: 10px;
}

.vs-privacy--footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .vs-privacy--container {
        padding: 15px;
    }

    .vs-privacy--section-title {
        font-size: 20px;
    }

    .vs-privacy--section-text {
        font-size: 14px;
    }
    .footer-classname-send {
    background-color: #ff6961;
    border: none;
    color: white;
    padding: 5px 20px;
    width: 45%;
    border-radius: 30px;
    cursor: pointer;
}
}





/* ______add property page______ */
/* Container Styles */
.AP-container {
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.AP-content {
    background: white;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.AP-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.AP-header h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.AP-close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.AP-close-btn:hover {
    color: #333;
}

/* Form Styles */
.AP-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.AP-form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.AP-form-row-four {
    grid-template-columns: repeat(4, 1fr);
}

.AP-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.AP-form-group label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.AP-form-group input,
.AP-form-group select {
    padding: 0.50rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.AP-form-group input::placeholder {
    color: #aaa;
}

.AP-form-group input:focus,
.AP-form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Upload Area Styles */
.AP-upload-area {
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 1.0rem 2.0rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    /* background-color: #f8f9fa; */
    width: 35%;
}

.AP-upload-area:hover {
    border-color: #f8f9fa;
    background-color: rgba(0, 123, 255, 0.05);
}

.AP-upload-area i {
    font-size: 2rem;
    color: #666;
    margin-bottom: 1rem;
}

.AP-upload-area span {
    display: block;
    color: #666;
    font-size: 0.95rem;
}

/* Button Styles */
.AP-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.AP-btn {
    padding: 0.75rem 2rem;
    border: 1px solid   ;
    border-radius: 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.AP-btn:active {
    transform: scale(0.98);
}

.AP-btn-primary {
    background-color: #ff5a5f;
    color: white;
}

.AP-btn-primary:hover {
    background-color: #ff4448;
}

.AP-btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.AP-btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Drag and Drop Styles */
.AP-upload-area.dragover {
    border-color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
}

 /* Responsive Design  */
 @media (max-width: 992px) {
     .AP-form-row-four {
        grid-template-columns: repeat(2, 1fr);
    } 
}

@media (max-width: 768px) {
    .AP-container {
        padding: 1rem;
    }

    .AP-content {
        padding: 1.5rem;
    }

    .AP-form-row,
    .AP-form-row-four {
        grid-template-columns: 1fr;
    }

    .AP-form-actions {
        flex-direction: column;
    }

    .AP-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .AP-container {
        padding: 0;
    }

    .AP-content {
        border-radius: 0;
        padding: 1rem;
    }

    .AP-header h2 {
        font-size: 1.25rem;
    }

    .AP-upload-area {
        padding: 1.5rem;
        width: 100%;
    }

    .AP-upload-area i {
        font-size: 1.5rem;
    }
}

/* Form Validation Styles */
.AP-form-group input:invalid,
.AP-form-group select:invalid {
    border-color: #D9D9D9;
}

.AP-form-group input:invalid:focus,
.AP-form-group select:invalid:focus {
    border-color: #D9D9D9;
    box-shadow: 0 0 0 3px #D9D9D9(255, 68, 72, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
} 

/* ________About us page______ */
/* Reset and Base Styles */

/* Hero Section */
.AU-hero {
    position: relative;
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.AU-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.AU-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.AU-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.AU-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Stats Section */
.AU-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    background: white;
    transform: translateY(-50px);
    margin: 0 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.AU-stat-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.AU-stat-card:hover {
    transform: translateY(-5px);
}

.AU-stat-icon {
    width: 70px;
    height: 70px;
    background: #ff5a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.AU-stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.AU-stat-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.AU-stat-content p {
    color: #666;
}

/* Story Section */
.AU-story {
    padding: 6rem 2rem;
    background: white;
}

.AU-story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.AU-story-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.AU-story-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

.AU-story-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.AU-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.AU-feature i {
    color: #ff5a5f;
}

.AU-story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Team Section */
.AU-team {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.AU-team h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.AU-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.AU-team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.AU-team-member:hover {
    transform: translateY(-5px);
}

.AU-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.AU-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.AU-team-member:hover .AU-member-image img {
    transform: scale(1.1);
}

.AU-member-info {
    padding: 1.5rem;
}

.AU-member-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.AU-member-info p {
    color: #666;
    margin-bottom: 1rem;
}

.AU-member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.AU-member-social a {
    color: #666;
    transition: color 0.3s ease;
}

.AU-member-social a:hover {
    color: #ff5a5f;
}

/* Values Section */
.AU-values {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.AU-values h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.AU-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.AU-value-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.AU-value-card:hover {
    transform: translateY(-5px);
}

.AU-value-card i {
    font-size: 2.5rem;
    color: #ff5a5f;
    margin-bottom: 1rem;
}

.AU-value-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.AU-value-card p {
    color: #666;
}

/* Contact Section */
.AU-contact {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.AU-contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.AU-contact h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.AU-contact p {
    color: #666;
    margin-bottom: 2rem;
}

.AU-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.AU-form-group input,
.AU-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.AU-form-group textarea {
    height: 150px;
    resize: vertical;
}

.AU-form-group input:focus,
.AU-form-group textarea:focus {
    outline: none;
    border-color: #ff5a5f;
}

.AU-submit-btn {
    padding: 1rem 2rem;
    background: #ff5a5f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.AU-submit-btn:hover {
    background: #ff4448;
}
div#homesCarousel {
    width: 75%;
    margin: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .AU-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .AU-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .AU-story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .AU-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .AU-hero h1 {
        font-size: 2.5rem;
    }

    .AU-stats {
        margin: 0 1rem;
        padding: 2rem 1rem;
    }

    .AU-story,
    .AU-team,
    .AU-values,
    .AU-contact {
        padding: 4rem 1rem;
    }

    .AU-team-grid {
        grid-template-columns: 1fr;
    }
    div#homesCarousel {
    width: 100%;
    margin: auto;
}

}

@media (max-width: 480px) {
    .AU-hero h1 {
        font-size: 2rem;
    }

    .AU-stats {
        grid-template-columns: 1fr;
    }

    .AU-values-grid {
        grid-template-columns: 1fr;
    }

    .AU-story-text h2,
    .AU-team h2,
    .AU-values h2,
    .AU-contact h2 {
        font-size: 2rem;
    }
} 




/*____listing filter___*/
       /* Overlay */
        .Listing_filter_overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: rgba(0, 0, 0, 0.4); */
            z-index: 1;
        }

        /* Sidebar */
        .Listing_filter_sidebar {
            position: fixed;
            top: 0;
            left: -350px; /* Initially hidden */
            width: 300px;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(15px);
             box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2); 
            transition: left 0.4s ease-in-out;
            z-index: 2;
            padding: 20px;
            border-radius: 0 15px 15px 0;
            overflow-y: auto;
        }

        .Listing_filter_sidebar h2 {
            font-size: 22px;
            text-align: center;
            padding-bottom: 10px;
            /* border-bottom: 2px solid rgba(255, 255, 255, 0.3); */
            color: black;
        }

        /* Filter Form */
        .Listing_filter_form {
            margin-top: 15px;
        }

        .Listing_filter_label {
            font-size: 14px;
            font-weight: bold;
            display: block;
            margin: 10px 0 5px;
            color: black;
        }

        .Listing_filter_input {
            width: calc(100% - 20px); /* Ensuring inputs stay inside */
            padding: 10px;
            font-size: 14px;
            border: none;
            border-radius: 10px;
            outline: none;
            margin-bottom: 10px;
            background: rgba(35, 35, 35, 0.3);
            color: white;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .Listing_filter_input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .Listing_filter_checkbox {
            margin-right: 8px;
            transform: scale(1.1);
        }

        .Listing_filter_options label {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: black;
            padding: 5px 0;
        }

        /* Buttons */
        .Listing_filter_btn {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 10px 20px;
            background: linear-gradient(45deg, #007bff, #00d4ff);
            color: black;
            border: none;
            cursor: pointer;
            border-radius: 20px;
            font-size: 16px;
            transition: 0.3s;
        }

        .Listing_filter_btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
        }

        .Listing_filter_closebtn {
            background: red;
            color: white;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 50px;
            font-size: 14px;
            display: block;
            margin: 0 auto 15px;
            transition: 0.3s;
        }

        .Listing_filter_closebtn:hover {
            background: darkred;
        }

        .Listing_filter_applybtn,
        .Listing_filter_resetbtn {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            margin-top: 15px;
            transition: 0.3s;
        }

        .Listing_filter_applybtn {
            background: #28a745;
            color: white;
        }

        .Listing_filter_applybtn:hover {
            background: #218838;
        }

        .Listing_filter_resetbtn {
            background: #ffc107;
            color: black;
        }

        .Listing_filter_resetbtn:hover {
            background: #e0a800;
        }
        
        
        
        
        

    .about-why-us-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 30px;
      background: #ffffff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border-radius: 20px;
      overflow: hidden;
    }

    .about-why-us-title {
      text-align: center;
      font-size: 2.8rem;
      color: #1a73e8;
      margin-bottom: 20px;
      animation: fadeInDown 1s ease forwards;
    }

    .about-why-us-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .about-why-us-feature {
      padding: 20px;
      border-radius: 15px;
      transform: translateY(50px);
      opacity: 0;
      transition: all 0.5s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .about-why-us-feature.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .about-why-us-feature i {
      font-size: 30px;
      color: #1a73e8;
      margin-bottom: 15px;
    }

    .about-why-us-feature h3 {
      color: #1a73e8;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .about-why-us-feature p {
      line-height: 1.6;
      font-size: 1rem;
    }

    .about-why-us-footer {
      text-align: center;
      margin-top: 40px;
      font-size: 1.2em;
      animation: fadeInUp 1s ease forwards;
    }

    .about-why-us-footer span {
      color: #1a73e8;
      font-weight: bold;
    }

    /* Light background colors for cards */
    .about-why-us-feature:nth-child(1) { background-color: #e3f2fd; }
    .about-why-us-feature:nth-child(2) { background-color: #e8f5e9; }
    .about-why-us-feature:nth-child(3) { background-color: #fff3e0; }
    .about-why-us-feature:nth-child(4) { background-color: #f3e5f5; }

    /* Animations */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .about-why-us-title {
        font-size: 2rem;
      }

      .about-why-us-section {
        padding: 20px;
      }

      .about-why-us-feature {
        padding: 15px;
      }

      .about-why-us-feature h3 {
        font-size: 1.1em;
      }

      .about-why-us-feature p {
        font-size: 0.95em;
      }

      .about-why-us-footer {
        font-size: 1em;
        padding: 0 10px;
      }
    }

    @media (max-width: 480px) {
      .about-why-us-title {
        font-size: 1.8rem;
      }

      .about-why-us-feature i {
        font-size: 24px;
      }
    }
    
    input:focus {
  outline: none;
}


    .popup {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    .popup.show {
      display: flex;
      animation: fadeIn 0.5s ease forwards;
    }
    .popup-content {
      background: #fff;
      padding: 0px;
      border-radius: 10px;
      text-align: center;
      max-width: 500px;
      transform: translateY(-50px);
      opacity: 0;
      animation: slideDown 0.5s ease forwards;
      animation-delay: 0.3s;
    }
    .popup button {
    margin-top: 20px;
    padding: 10px 16px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 38px;
    cursor: pointer;
    position: absolute;
    top: -40px;
    box-shadow: 0px 0px 18px #00000069;
    right: -26px;
}
  @media (max-width: 480px) {
      .popup {
      width: 100%; height: 100%;
      padding: 15px;
    }
    .popup button {
    margin-top: 20px;
    padding: 5px 10px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 38px;
    cursor: pointer;
    position: absolute;
    top: -40px;
    box-shadow: 0px 0px 18px #00000069;
    right: -9px;
}
.LD-grid-row{
    padding: 0px;
}
.footer-classname-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
     width: 100%; 
    margin: auto;
}

     
}
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideDown {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }