/* Header */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}


.hamburger {
    display: none;
    flex-direction: column;
    /* gap: 5px; */
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 10px;
}

/*---------------------------------------------------------------- Responsive --------------------------------------------------------*/












@media (max-width:767px) {

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
        cursor: pointer;
        flex-direction: column;
        width: 30px;
        height: 24px;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: #537730;
        border-radius: 10px;
        transition: all 0.3s ease;
        margin: auto 0;
        position: absolute;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
    }

    .hamburger span:nth-child(3) {
        bottom: 0;
    }

    /* Hamburger active state - convert to X */
    .hamburger.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    /* Navbar overlay */
    /* .navbar::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
        transition: 0.3s;
    } */

    .navbar.active::before {
        left: 0;
    }

    .desktop-btn {
        display: none;
    }

    .navbar {
        display: none;
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
              padding: 10px 20px 20px;
       box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.15);
        z-index: 998;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .join-box {
        margin-top: 50px;
    }

    .navbar.active {
        display: block;
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-links li a {
        display: block;
        padding: 15px 10px;
        border-radius: 0;
    }

    .hero-content {
        margin-top: 100px;
    }

    .hero-content {
        margin-bottom: 0px !important;
    }

    .store-text h4 {
        font-size: 15px;
    }

    .hero {
        text-align: center;
        padding: 0px;
    }

    .flow-tag {
        font-size: 15px;

    }

    .flow-headers h2 {
        font-size: 20px;
    }







    .card h3 {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.4;
    }

    .card p {
        font-size: 15px;
    }

    .store-buttons {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }

    .hero-container {
        flex-direction: column;
        display: block;
    }

    .faq-item {
        padding: 16px;
        margin-bottom: 24px;
    }

    .faq-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .faq-section {
        padding: 20px 0px;
      
    }

    .faq-heading h2 {
        font-size: 20px;
        margin: 8px 0 10px 0;
    }

    .faq-heading p {
        font-size: 13px;
    }

    .faq-box {
        padding-left: 40px;
        margin-top: 30px;
    }

    .faq-icon {
        left: -45px;
        top: 16px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .faq-content h3 {
        font-size: 13px;
        margin: 0 0 8px 0;
    }

    .faq-content p {
        font-size: 12px;
    }

    .faq-box::before {
        left: 15px;
        width: 2px;
    }


    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps {
        grid-template-columns: 1fr;

    }


    .owners-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .owners-image {
        order: -1;
        width: 100%;
    }

.owners-section {
    padding: 20px 0px;
}
    .owners-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
        display: block;
        object-fit: contain;
        margin: 0 auto;
    }

    .owners-content {
        gap: 16px;
    }

    .owners-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .owner-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .owners-badge {
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
        padding: 14px 16px;
        max-width: 250px;
        gap: 8px;
    }

    .owners-badge span {
        font-size: 10px;
        padding: 5px 10px;
    }

    .owners-badge p {
        font-size: 12px;
    }

    .feature-box {
        gap: 14px;
        padding: 14px 16px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-box h4 {
        font-size: 14px;
        text-align: center;
    }

    .feature-box p {
        font-size: 12px;
        text-align: center;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
    }

    .feature-icon i {
        font-size: 16px;
    }

    .owner-features {
        gap: 12px;
    }

    .hero-image {
        margin-top: 50px;
        height: 255px;

    }

    .flow-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .flow-headers h2 {
        font-size: 20px;
        margin: 8px 0 10px 0;
    }

    .flow-headers p {
        font-size: 13px;
        margin-top: 10px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .service-grid::before {
        display: none;
    }

    .service-card {
        padding: 24px 16px;
        gap: 12px;
    }

    .service-card::after {
        display: none;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .service-card h4 {
        font-size: 14px;
        min-height: auto;
    }

    .service-card p {
        font-size: 12px;
    }

    .feature-box p {
        text-align: center;
        font-size: 15px;

    }

    .journey-item p {
        font-size: 15px;
    }

    .owners-badge p {
        /* margin-bottom: -70px; */
        font-size: 13px;
        margin-top: 6px;
       color: #1d2432;
    margin: 0px;
    }

    .tenant-badge p {
        font-size: 13px;
        margin: 0px;

    }

    .works h2 {
        font-size: 20px;
    }

    /* .subtitle{
        font-size: 20px;
    } */
    .subtitle {
        font-size: 15px;
    }

    .step-card p {
        font-size: 15px;
    }

    .tm-title h2 {
        font-size: 20px;
    }

    .tenant-textss {
        font-size: 20px;
    }

    .tm-info h3 {
        font-size: 15px;
    }

    .works {
       
        text-align: center;
    }

    .experience-card li {

        font-size: 15px;
    }

    .step-card {
        padding: 20px 10px;
    }

    .owners-badge {
      position: absolute;
        bottom: 70px;
        left: 12px;
        padding: 12px 14px;
        max-width: 220px;
        gap: 8px;
        transform:unset;
    }

    .tenant-badge span {
        padding: 6px 6px;
        font-size: 10px;
    }

    .owners-content h2 {
        font-size: 20px;
    }

  

    .nav-links a {
        font-size: 10px;
    }

    .owner-desc {
        font-size: 15px;
    }

  
    .tenant-wrapper {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .tenant-image-area {
        order: -1;
    }

    .tenant-content h2 {
        font-size: 22px;
        line-height: 1.3;
        margin: 0;
    }

    .tenant-content {
        gap: 15px;
    }

    .tenant-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .tenant-description {
        font-size: 13px;
        line-height: 1.6;
        color: #666;
        margin: 0;
    }

    .tenant-feature-list {
        gap: 12px;
        margin-top: 6px;
    }

    .tenant-feature-card {
        gap: 12px;
        padding: 12px 14px;
        flex-direction: row;
        text-align: left;
    }

    .tenant-feature-card p {
        font-size: 14px;
        margin-top:5px;
       text-align: center;
        color: #666;
    }
    .tenant-feature-card div{
        width:100%;
    }
    .tenant-icon {
     width:auto !important;   
    }

    .tenant-feature-card h4 {
        font-size: 13px;
    }

    .tenant-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .tenant-icon i {
        font-size: 18px;
    }

    .tenant-feature-card h4 {
        font-size: 14px;
        text-align: center;
    }

    .tenant-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin: 0 auto;
    }

    .tenant-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .owners-image img {
        width: 320px;
    }

    .tenant-badge {
        position: absolute;
        bottom: 70px;
        left: 12px;
        padding: 12px 14px;
        max-width: 220px;
        gap: 8px;
    }

    .service-icon {
        min-width: 55px;
    }

    .tm-grid {
        grid-template-columns: 1fr;
    }

    .security-section {
        padding: 40px 15px;
       
    }

    .security-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .security-content {
        text-align: center;
    }

    .security-icon-box {
        width: 100%;
    }

    .security-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .security-tag i {
        font-size: 14px;
    }

    .security-content h2 {
        font-size: 20px;
        margin: 8px 0 12px 0;
    }

    .security-content p {
        font-size: 13px;
        text-align: center;
    }

    .shield-icon {
        width: 140px;
        height: 140px;
        font-size: 70px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .security-card {
        padding: 16px 12px;
        margin: 0px;
    }

    .security-card i {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .security-card h3 {
        font-size: 14px;
    }

    .security-card p {
        font-size: 12px;
    }

    .experience-section {
        margin-bottom: -40px;
    }

    .flow-header {
        margin-top: -15px;
    }

    .tm-section {
        margin-top: 0px;
        padding: 40px 0px;
    }
.tm-title {
    text-align: center;
    margin-bottom: 20px;
}
    .tm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tm-title h2 {
        font-size: 20px;
    }

    .tm-card {
        padding: 20px;
    }

    .tm-review {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .tm-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .tm-info h3 {
        font-size: 13px;
    }

    .tm-info span {
        font-size: 11px;
    }

    .tenant-image-area img {
        /* margin-top: -50px; */
        height: auto;
        width: 320px;
    }

    .flow-header h2 {
        font-size: 20px;
    }

    .flow-header p {
        font-size: 15px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        padding: 20px 0px;

    }

    .tm-tag {
        margin-bottom: 0px;
    }



    .journey-section {
        padding: 50px 15px;
        margin-top: 0px;
        border-radius: 16px;
    }

    .journey-title {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .journey-steps {
        flex-direction: column;
        gap: 25px;
    }

    .journey-steps::before {
        display: none;
    }

    .journey-number {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 15px;
    }

    .journey-item h5 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .journey-item p {
        font-size: 12px;
    }

    .experience-section {
        padding: 20px 0px;
       
    }

    .experience-header {
        margin-bottom: 30px;
    }

    .experience-tag {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .experience-header h2 {
        font-size: 18px;
        
    }

    .experience-header p {
        font-size: 13px;
        line-height: 1.5;
    }

    .experience-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .card-top {
        padding: 15px;
        min-height: 50px;
    }

    .card-top h3 {
        font-size: 14px;
    }

    .card-top span {
        padding: 5px 10px;
        font-size: 10px;
    }

    .experience-card li {
        padding: 12px 15px;
        font-size: 13px;
        gap: 10px;
    }

    .experience-card li i {
        font-size: 14px;
    }

    .card {
        padding: 10px;
        text-align: center;
    }

    .feature-icon {
        margin-top: 15px;
    }

  .flow-headers {
    text-align: center;
     margin-bottom: 0px;
  }

    .service-card h4 {
        margin-top: 0px;
        text-align: center;
    }

.rental-flow-section::after {
content: unset;
}
.rental-flow-section {
    padding: 20px 0px;
}
    .step-card h4 {
        font-size: 15px;
    }

 .info-section .info-grid{
    width:100%;
 }


    .experience-header {
        margin-top: -14px;

    }

    .tm-title h1 {
        font-size: 20px;
    }

    .tm-card {
        padding: 20px;
    }
.security-icon-box {
    justify-content: center;
}
    .tm-title p {
        font-size: 15px;
    }

    .security-container {
        flex-direction: column;
        gap: 90px;
        text-align: center;
    }

    .security-left h2 {
        font-size: 20px;
        text-align: center;
    }

    .security-left p {
        font-size: 15px;
        text-align: center;
    }

    .security-section {
        padding: 40px 15px;
       
    }

    .security-container {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .security-card {
        padding: 16px 12px;
        margin: 0px;
    }

    .security-card i {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .security-card h3 {
        font-size: 14px;
    }

    .security-card p {
        font-size: 12px;
    }

    .security-tag {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .security-left h2 {
        font-size: 22px;
    }

    .security-left p {
        font-size: 14px;
    }

    .security-right {
        display: none;
    }

 

    .faq-tag {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .faq-heading h2 {
        font-size: 26px;
        margin: 10px 0 15px 0;
    }

    .faq-heading p {
        font-size: 14px;
    }

    .faq-box {
        padding-left: 48px;
        margin-top: 40px;
    }

    .faq-item {
        padding: 18px 18px;
        margin-bottom: 26px;
    }

    .faq-icon {
        left: -48px;
        top: 20px;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .faq-content h3 {
        font-size: 14px;
        margin: 0 0 9px 0;
        text-align: left;
    }

    .faq-content p {
        font-size: 13px;
        text-align: left;
    }

    /* .small-title {
        font-size: 15px;
    } */

    .download-content h1 {
        font-size: 20px;
    }

    .download-content p {
        font-size: 15px;
    }

    .download-content {

        width: 100%;
        text-align: center;
    }

    .ratings {
        flex-direction: column;
        gap: 16px;
        font-size: 15px;
    }

    .store-btn small {
        font-size: 9px;
    }

    .download-container {
        flex-direction: column;
        gap: 30px;
        margin: 0 auto;
        width: 100%;
    }

    .download-content {
        text-align: center;
        width: 100%;
    }

    .small-title {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .download-content h1 {
        font-size: 20px;
        margin: 8px 0 10px 0;
    }

    .download-content p {
        font-size: 13px;
        text-align: center;
    }

    .store-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        width: 100%;
    }

    .store-btns {
        max-width: 100%;
        padding: 12px 16px;
    }

    .store-btns img {
        width: 32px;
        height: 32px;
    }

    .store-text h4 {
        font-size: 13px;
    }

    .phone-box {
        width: 100%;
        min-height: 250px;
    }

    .phone-box img {
        width: 70%;
        max-width: 200px;
    }

    .download-section {
        padding: 20px 15px;
    }

.download-section::after {
content:unset;
}

    .join-box h2 {
        font-size: 20px;
    }

    .join-box p {
        font-size: 15px;
    }

    .buttons {
        flex-direction: column;
    }

    .footer .container {
        flex-direction: column;
        align-items: flex-start;
    

    }
.footer .container {
 
    gap: 0px;
}
    .logo img {
        height: 50px;
    }

    .security-section {
        padding: 0px;
        
    }

    .footer-info {
        text-align: left;

    }
.feature-box h4 {
  
    margin: 10px !important;
}
.tenant-section::before {
    content: unset !important;
}
.tenant-section {
    padding: 20px 0px;
}
    .feature-box {
        flex-direction: column;
        padding: 15px;
    }

    .tenant-feature-card {
        flex-direction: column;
        padding: 20px 0px;
    }

    .phone-box {
        margin-top: 30px;
        width: 100%;
    }

    .store-btn b {
        font-size: 14px;
    }

    .service-card {
        padding: 15px;
        text-align: -webkit-center;
        flex-direction: column;
    }

    .download-btn {
        text-decoration: none;
        padding: 10px 10px;
    }

    .security-card i {
        padding: 10px;
        margin-bottom: 0px;
    }

    .owners-badge span {
        padding: 6px 6px;
        font-size: 10px;

    }

    .section-title {
        font-size: 15px;
        font-weight: 600;
    }

    .tenant-label {
        font-weight: 15px;
        font-weight: 600;
    }

    .join-section {
        padding: 20px 15px;
    }
.join-section {
   
    margin-top: 0px;
}
    .join-box span {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .join-box h2 {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .join-box p {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .buttons {
        gap: 12px;
        flex-direction: column;
    }

    .buttons button {
        width: 100%;
        padding: 14px 32px;
        font-size: 14px;
    }




}


@media (min-width:768px) and (max-width:991px) {

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .logo img {
        height: 70px;
    }

    .verified {
        margin-top: 15px;
    }

    .agreement {
        margin-top: 15px;
    }

    .payment {
        margin-top: 15px;
    }

    .history {
        margin-top: 15px;
    }

    .reminder {
        margin-top: 15px;
    }

    .support {
        margin-top: 15px;
    }

#tenants{
    padding-top:0px;
}

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
        z-index: 999;
    }

    .navbar.active {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        list-style: none;
        margin: 0;
        padding: 15px 20px;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 14px 0;
        color: #537730;
        text-decoration: none;
        font-size: 15px;
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }


    .download-btn {
        display: inline-flex;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 8px 8px;
        background: #FE8208;
        color: #fff;
        border-radius: 6px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        margin-left: auto;
        margin-right: 15px;
        white-space: nowrap;
    }

    .shield-circle {
        width: 292px;
        height: 292px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        /* gap:5px; */
        cursor: pointer;
    }

    .service-icon {
        /* align-items: end; */
        min-height: 65px;
        width: 65px;
        height: 65px;
        flex-shrink: 0;
        display: inline-flex;
    }

    .tm-user {
        margin: 15px 0px;
    }


    .hamburger span {
        width: 28px;
        height: 3px;
        background: #537730;
        border-radius: 5px;
        transition: .3s;
    }

    .card {
        padding: 10px;
        text-align: center;
    }

    .owners-badge {
        bottom: 110px;
    }

    .hero {
        min-height: 0px;
        position: relative;
      
    }

    .hero p {
        font-size: 20px;
    }

    .store-text span {
        font-size: 15px;
    }

    .tenant-card h3 {
        font-size: 20px;
    }

    .card h3 {
        font-size: 20px;
    }

    .card p {
        font-size: 20px;
        line-height: 1.8;
    }

    .small-title {
        font-size: 20px;
    }

    .owners-badge span {
        font-size: 15px;
    }

    /* .owners-badge {
        bottom: 200px;
    } */

    .owners-badge p {
        font-size: 18px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        height: auto;
       padding-top:20px;
    }

.works h2 {
    font-size: 24px;
}

 

    .step-card {
        padding: 20px;
    }

    .step-card h4 {
        font-size: 20px;
    }

    .step-card p {
        font-size: 16px;
    }

    .nav-links {
        gap: 12px;
    }

    nav-links li a {
        font-size: 12px;
    }



    .owners-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .hero-image {
        height: 300px;
        
    }

    .tenant-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tenant-image-area {
        order: -1;
        width: 100%;
    }

    .owners-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .owners-image {
        order: -1;
        width: 100%;
    }

    .owners-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .owners-content {
        gap: 18px;
    }

  

    .owner-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .owners-badge {
        bottom: 70px;
        left: 15px;
        padding: 14px 18px;
        max-width: 240px;
        gap: 8px;
    }

    .owners-badge span {
        font-size: 10px;
        padding: 5px 10px;
    }

    .owners-badge p {
        font-size: 12px;
    }

    .feature-box {
        gap: 14px;
        padding: 14px 16px;
    }

    .feature-box h4 {
        font-size: 13px;
    }

    .feature-box p {
        font-size: 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
            flex-shrink: 0;
    }

    .feature-icon i {
        font-size: 18px;
    }

    .owner-features {
        gap: 12px;
    }

    .tenant-content {
        gap: 20px;
        width: 100%;
    }

    .tenant-label {
        font-size: 12px;
        letter-spacing: 2.5px;
        margin-bottom: 10px;
    }

    .tenant-content h2 {
        font-size: 30px;
        line-height: 1.2;
        margin: 0;
    }

    .tenant-description {
        font-size: 15px;
        line-height: 1.7;
        color: #666;
        margin: 0;
        max-width: 100%;
    }

    .tenant-feature-list {
        gap: 16px;
        margin-top: 10px;
    }

    .tenant-feature-card {
        gap: 16px;
        padding: 16px 18px;
        flex-direction: row;
        text-align: left;
    }

    .tenant-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        margin-top: 0;
    }

    .tenant-icon i {
        font-size: 22px;
    }

    .tenant-feature-card h4 {
        font-size: 15px;
        text-align: left;
        margin-bottom: 4px;
    }

    .tenant-feature-card p {
        font-size: 13px;
        text-align: left;
        color: #666;
    }

    .tenant-badge {
        bottom: 47px;
        left: 56px;
        padding: 15px 18px;
        max-width: 260px;
        gap: 9px;
    }

    .tenant-badge span {
        font-size: 11px;
        padding: 6px 11px;
    }

    .tenant-badge p {
        font-size: 13px;
    }

    .tenant-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .tenant-description {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }

    .tenant-feature-list {
        gap: 14px;
        margin-top: 8px;
    }

    .tenant-feature-card {
        gap: 14px;
        padding: 14px 16px;
    }

    .tenant-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .tenant-icon i {
        font-size: 20px;
    }

    .tenant-feature-card h4 {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .tenant-feature-card p {
        font-size: 12px;
    }

    .owners-image {
        width: 100%;
    }

    .owners-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .owners-content {
        width: 100%;
        padding: 0px;
        margin-top: -77px;
    }

    .owners-content h2 {
        font-size: 24px;
    }

    .owner-desc {
        font-size: 16px;
    }
p{
    font-size:16px !important;
}
    .feature-box h4 {
        font-size: 16px;
    }

    .tenant-badge span {
        font-size: 15px;
    }

    .tenant-badge p {
        font-size: 18px;
    }

    .tenant-label {
        font-size: 20px;
    }

    .feature-box p {
        font-size: 20px;
                padding: 10px 0px;
    }



    .tenant-feature-card h4 {
        font-size: 15px;
    }

    .tenant-feature-card p {
        font-size: 20px;
    }

    .flow-tag {
        font-size: 20px;
    }

    .flow-header p {
        font-size: 20px;
    }

    .flow-header p {
        font-size: 20px;
    }

    .service-card h4 {
        font-size: 20px;
        margin-top: 10px;
    }

    .service-card p {
        font-size: 20px;
        line-height: 1.8;
    }

    .service-card {
        padding: 18px;
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }

    .rental-flow-section {
        padding: 60px 20px;
    }

    .flow-tag {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .flow-headers h2 {
        font-size: 24px;
        margin: 10px 0 12px 0;
    }
.tm-section {
padding-top:0px;
}
h2{
    font-size:24px !important;
}
    .flow-headers p {
        font-size: 14px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 0;
    }

    .service-grid::before {
        display: none;
    }

    .service-card {
        padding: 28px 18px;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .service-card::after {
        display: none;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .service-card h4 {
        font-size: 15px;
        margin: 0;
    }

    .service-card p {
        font-size: 13px;
    }

    .journey-title {
        font-size: 20px;
    }

    .journey-item h5 {
        font-size: 15px;
        font-weight: 600;
    }

    .journey-item p {
        font-size: 16px;
        font-weight: 600;
    }

    .journey-section {
        padding: 60px 20px;
        margin-top: 40px;
        border-radius: 18px;
    }

    .journey-title {
        font-size: 12px;
        letter-spacing: 2.5px;
        margin-bottom: 35px;
    }

    .journey-steps {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .journey-steps::before {
        display: none;
    }

    .journey-item {
        flex: 0 0 calc(50% - 10px);
    }

    .journey-number {
        width: 75px;
        height: 75px;
        font-size: 36px;
        margin-bottom: 16px;
    }

    .journey-item h5 {
        font-size: 15px;
    }

    .journey-item p {
        font-size: 13px;
    }


    .rental-flow-section {
        margin-top: 10px;
    }

    .experience-tag {
        font-size: 20px;
    }

    .experience-header p {
        font-size: 20px;
    }

    .experience-tag {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .experience-header h2 {
        font-size: 24px;
       
    }

    .experience-header p {
        font-size: 15px;
    }

    .experience-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-top {
        padding: 16px;
        min-height: 55px;
    }

    .card-top h3 {
        font-size: 16px;
    }

    .card-top span {
        padding: 6px 11px;
        font-size: 11px;
    }

    .experience-card li {
        padding: 14px 18px;
        font-size: 14px;
        gap: 11px;
    }

    .experience-card li i {
        font-size: 15px;
    }

    .tm-tag {
        font-size: 20px;
    }

    .tm-title p {
        font-size: 20px;
    }

    .tm-card p {
        font-size: 15px;
    }

    .avatar {
        font-size: 30px;
    }

    .user h3 {
        font-size: 20px;
    }

    .user span {
        font-size: 20px;
    }

    .security-section {
        padding: 50px 20px;
    }

    .security-header {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 50px;
    }

    .security-content {
        text-align: center;
    }

    .security-tag {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .security-tag i {
        font-size: 15px;
    }

    .security-content h2 {
        font-size: 26px;
        margin: 10px 0 15px 0;
    }

    .security-content p {
        font-size: 14px;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .security-card {
        padding: 20px;
    }

    .security-card i {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .security-card h3 {
        font-size: 14px;
    }

    .security-card p {
        font-size: 13px;
    }

    .shield-icon {
        width: 160px;
        height: 160px;
        font-size: 80px;
    }

    .join-section {
        padding: 60px 20px;
    }

    .join-box span {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .join-box h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .join-box p {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .buttons {
        gap: 16px;
    }

    .buttons button {
        padding: 14px 40px;
        font-size: 15px;
    }

    .faq-tag {
        font-size: 13px;
        letter-spacing: 2.5px;
    }

    .faq-heading h2 {
        font-size: 32px;
        margin: 12px 0 18px 0;
    }

    .faq-heading p {
        font-size: 15px;
    }

    .faq-box {
        padding-left: 50px;
        margin-top: 50px;
    }

    .faq-item {
        padding: 20px 20px;
        margin-bottom: 28px;
    }

    .faq-icon {
        left: -50px;
        top: 22px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .faq-content h3 {
        font-size: 15px;
        margin: 0 0 10px 0;
    }

    .faq-content p {
        font-size: 14px;
    }

    .download-content p {
        font-size: 20px;
        padding: 13px 0px;
    }

    .store-text h4 {
        font-size: 16px;
    }

    .store-btn small {
        font-size: 15px;
    }

    .badge {
        font-size: 15px;
        padding: 8px 10px;
        font-weight: 600;
    }

    .join-box span {
        font-size: 20px;
        line-height: 1.8;
    }

    .join-box p {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 25px;
    }


    .download-container {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .download-content {
        text-align: center;
    }

    .small-title {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .download-content h1 {
        font-size: 26px;
        margin: 10px 0 12px 0;
    }

    .download-content p {
        font-size: 14px;
    }

    .store-buttons {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .store-btns {
        max-width: 275px;
        padding: 13px 18px;
    }

    .phone-box {
        width: 100%;
        min-height: 300px;
    }

    .phone-box img {
        width: 75%;
        max-width: 240px;
    }

  

    .info-grid {
        margin-top: 0px;
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 0px;
    }

   

    .join-section {
        margin-top: -30px;

    }

    .buttons button {
      
        font-size: 20px;
    }
    .buttons button {
        font-size: 16px !important;
    } 
    /* .owners-content{
    padding: 0px;
} */

}

.footer-logo img {
    width: 180px;
}

.footer-logo p {
    /* font-size: 20px; */
}

/* .footer-info h3 {
    font-size: 20px;
} */

.footer-info p {
    /* font-size: 20px; */
}

@media (min-width: 1024px) and (max-width: 1366px) {

    .hero-image {
        height: 306px;
        margin-top: 64px;
    }

    .hero-image .flow-header h2 {
        font-size: 35px;
    }

    .hero-content {
        margin-top: 70px;
    }


    .hero h1 {
        font-size: 30px;
    }

    .works h2 {
        font-size: 30px;
    }

    .owners-section {
        padding: 60px 30px;
    }

    .owners-wrapper {
        grid-template-columns: 45% 55%;
        gap: 50px;
        align-items: center;
    }

    .owners-image {
        order: auto;
    }

    .owners-content {
        gap: 22px;
    }

    .owners-content h2 {
        font-size: 35px;
        line-height: 1.25;
    }

    .owner-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .owners-badge {
        bottom: 150px;
        left: 20px;
        transform: none;
        padding: 15px 18px;
        max-width: 260px;
        gap: 9px;
    }

    .owners-badge span {
        font-size: 10px;
        padding: 5px 11px;
    }

    .owners-badge p {
        font-size: 13px;
    }

    .feature-box {
        gap: 15px;
        padding: 15px 18px;
    }

    .feature-box h4 {
        font-size: 14px;
    }

    .feature-box p {
        font-size: 13px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .owner-features {
        gap: 14px;
    }

    
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .navbar {
        position: static;
        display: flex !important;
        width: auto;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        margin-left: auto;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        align-items: center;
      
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        width: auto;
    }

    .nav-links li a {
        display: block;
        padding: 8px 8px;
        border: none;
        font-size: 15px;
        white-space: nowrap;
    }

    .download-btn {
        display: inline-flex;
        padding: 6px 9px;
        border-radius: 12px;
        /* margin-left:20px; */
    }

   
    .hamburger {
        display: none;
    }
    h5 {
        font-size: 17px !important;
    }
    .tenant-content {
        padding: 5px;
    }

    .flow-header {
        margin-top: 50px;
    }

    .service-icon {
        /* align-items: end; */
        flex-shrink: 0;

    }

    .download-container {
        /* margin-top: 50px; */
        margin: 25px 40px;
    }

    .join-box {
        margin-top: 0px;
    }

    .info-section {
        /* margin-top: -365px; */
    }

    .owners-section {
        padding: 60px 30px;
    }

    .owners-wrapper {
        grid-template-columns: 45% 55%;
        gap: 60px;
        align-items: center;
    }

    .owners-image {
        order: auto;
    }

    .owners-content {
        gap: 25px;
    }

    .owners-content h2 {
        font-size: 38px;
        line-height: 1.2;
    }

    .owner-desc {
        font-size: 16px;
        line-height: 1.8;
    }

    .owners-badge {
        bottom: 221px;
        left: 30px;
        padding: 18px 22px;
        max-width: 280px;
        gap: 10px;
    }

    .owners-badge span {
        font-size: 11px;
        padding: 6px 12px;
    }

    .owners-badge p {
        font-size: 14px;
    }

    .feature-box {
        gap: 18px;
        padding: 18px 20px;
        flex-direction: row;
    }

    .feature-box h4 {
        font-size: 16px;
        text-align: left;
        margin-bottom: 4px;
    }

    .feature-box p {
        font-size: 14px;
        text-align: left;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        margin: 0;
    }

    .feature-icon i {
        font-size: 24px;
    }

    .tenant-section {
        padding: 60px 30px;
    }

    .tenant-wrapper {
        grid-template-columns: 55% 45%;
        gap: 60px;
        align-items: center;
    }

    .tenant-image-area {
        order: auto;
    }

    .tenant-content {
        gap: 25px;
    }

    .tenant-label {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    .tenant-content h2 {
        font-size: 38px;
        line-height: 1.2;
    }

    .tenant-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .tenant-feature-list {
        gap: 18px;
        margin-top: 15px;
    }

    .tenant-feature-card {
        gap: 18px;
        padding: 18px 20px;
        flex-direction: row;
    }

    .tenant-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        margin: 0;
    }

    .tenant-icon i {
        font-size: 24px;
    }

    .tenant-feature-card h4 {
        font-size: 16px;
        text-align: left;
        margin-bottom: 4px;
    }

    .tenant-feature-card p {
        font-size: 14px;
        text-align: left;
    }

    .owners-badge {
        bottom: 156px;
        left: 30px;
    }

    .hero p {
        font-size: 20px;
    }

    .hero {
        margin-top: 50px;
    }


    .info-grid {
        margin-top: 50px;
    }

    .store-text span {
        font-size: 12px;
    }

  p{
    font-size:16px !important;
  }

    .card {
        text-align: center;
        padding: 25px;
    }

    .card p {
        font-size: 20px;
    }

    .section-title {
        font-size: 25px;
    }

    .works h2 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 25px;
    }

    .step-card h4 {
                font-size: 20px;
        margin: 10px 0px;
    }
    

    .step-card p {
        font-size: 20px;
    }

    .owners-badge span {
        font-size: 13px;
        padding: 8px 10px;
    }

    .owners-badge p {
        font-size: 25px;
        max-width: 100%;
    }



    .owners-content h2 {
        font-size: 40px;
    }

    .owner-desc {
        font-size: 25px;
        max-width: 100%;
    }

    .feature-box h4 {
        font-size: 20px;
    }

    .feature-box p {
        font-size: 20px;
    }

    .tenant-label {
        font-size: 25px;
    }

    .tenant-content h2 {
        font-size: 40px;
    }

    .tenant-description {
        font-size: 25px;
        max-width: 100%;
    }

    .tenant-feature-card h4 {
        font-size: 20px;
    }

    .tenant-feature-card p {
        font-size: 20px;
    }

    .tenant-badge span {
        font-size: 13px;
        padding: 8px 10px;
    }

    .tenant-badge p {
        font-size: 25px;
        width: 100%;
        max-width: 100%;
    }

    .tenant-badge {
        bottom: 104px;
        left: 30px;
    }

    .security-card{
        margin: 0px 30px;
    }


    .security-container {
        padding: 13px 30px;
    }

    .flow-tag {
        font-size: 25px;
        display: flex;
        justify-content: center;
    }

    .flow-header h2 {
        font-size: 40px;
        text-align: left;
    }

    .flow-header p {
        font-size: 25px;
        max-width: 100%;
    }

    .step-card {
        padding: 14px 14px;
    }

    .service-card h4 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 20px;
        line-height: 1.4;
    }

    .journey-section {
        padding: 70px 25px;
        margin-top: 50px;
        border-radius: 20px;
    }

    .journey-title {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 45px;
    }

    .journey-steps {
        flex-direction: row;
        gap: 0;
    }

    .journey-steps::before {
        display: block;
        top: 45px;
    }

    .journey-item {
        flex: 1;
    }

    .journey-number {
        width: 85px;
        height: 85px;
        font-size: 30px;
        margin-bottom: 18px;
    }

    .journey-item h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .journey-item p {
        font-size: 14px;
    }

    .rental-flow-section {
        padding: 70px 20px;
    }

    .flow-tag {
        font-size: 13px;
        letter-spacing: 2.5px;
        margin-bottom: 15px;
    }

    .flow-headers h2 {
        font-size: 32px;
        margin: 12px 0 16px 0;
    }

    .flow-headers p {
        font-size: 15px;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .service-card {
        padding: 40px 20px;
        gap: 16px;
    }

    .service-card::after {
        right: -40px;
        width: 80px;
    }

    .service-card:last-child::after {
        display: none;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .service-card h4 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 14px;
    }

    .journey-title {
        font-size: 25px;
    }

    .small-title {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 0px;
    }
    .small-title {
        font-size: 12px;
    }
h2{
  font-size: 24px !important;  
}
    .journey-item h5 {
        font-size: 20px;
    }

    .journey-item p {
        font-size: 18px;
    }

    .experience-tag {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .experience-header h2 {
        font-size: 32px;
    }

    .experience-header p {
        font-size: 18px;
    }

    .experience-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .card-top {
        padding: 18px;
        min-height: 60px;
    }

    .card-top h3 {
        font-size: 18px;
    }

    .card-top span {
        padding: 7px 13px;
        font-size: 12px;
    }

    .experience-card li {
        padding: 16px 20px;
        font-size: 15px;
        gap: 12px;
    }

    .experience-card li i {
        font-size: 17px;
    }

    .tm-tag {
        font-size: 20px;
    }

    .tm-title h1 {
        font-size: 35px;
    }

    .tm-title p {
        font-size: 20px;
    }

    .tm-card p {
        font-size: 15px;
    }

    .user h3 {
        font-size: 20px;
    }

    .user span {
        font-size: 20px;
    }

    .avatar {
        font-size: 30px;
    }

    .security-header {
        flex-direction: row;
        gap: 60px;
        margin-bottom: 60px;
    }

    .security-content {
        text-align: left;
        flex: 1;
    }

    .security-icon-box {
        flex: 1;
    }

    .security-tag {
        font-size: 12px;
        letter-spacing: 2.5px;
    }

    .security-content h2 {
        font-size: 30px;
        margin: 10px 0 15px 0;
    }

    .security-content p {
        font-size: 15px;
    }

    .security-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .security-card {
        padding: 22px;
        margin: 0px;
    }

    .security-card i {
        font-size: 40px;
        margin-bottom: 14px;
    }

    .security-card h3 {
        font-size: 14px;
    }

    .security-card p {
        font-size: 13px;
    }

    .shield-icon {
        width: 180px;
        height: 180px;
        font-size: 90px;
    }

    .join-section {
        padding: 70px 20px;
    }

    .join-box span {
        font-size: 13px;
        letter-spacing: 2.5px;
        margin-bottom: 18px;
    }

    .join-box h2 {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .join-box p {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .buttons {
        gap: 20px;
    }

    .buttons button {
        padding: 16px 50px;
        font-size: 16px;
    }

    .faq-tag {
        font-size: 20px;
    }

    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-heading p {
        font-size: 20px;
    }

    .faq-content h3 {
       
        margin: 0px;
    }
.join-section {

 margin-top: 0px;
}
    .faq-content p {
        font-size: 20px;
        margin: 0px;
    }

    .download-content h1 {
        font-size: 35px;
    }

    .download-content p {
        font-size: 20px;
        max-width: 100%;
    }

    .store-btn small {
        font-size: 15px;
    }

    .ratings {
        font-size: 20px;
    }

    .join-box span {
        font-size: 20px;
    }

    .join-box h2 {
        margin-top: 35px;
    }

    .join-box p {
        font-size: 20px;
    }

    .buttons button {
        font-size: 20px;
        width: 100%;
    }

    .footer-logo img {
        width: 140px;
    }

    .footer-logo p {
        font-size: 20px;
    }

    .footer-info h3 {
        font-size: 20px;
    }

    .footer-info p {
        font-size: 20px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .badge {
        font-size: 20px;
        font-weight: 600;
    }

}

@media (min-width:1367px) {

    .owners-section {
        padding: 60px 40px;
    }

    .owners-wrapper {
        grid-template-columns: 45% 55%;
        gap: 70px;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }

    .owners-content {
        gap: 28px;
    }

    .owners-content h2 {
        font-size: 42px;
        line-height: 1.2;
    }

    .owner-desc {
        font-size: 17px;
        line-height: 1.9;
        max-width: 580px;
    }

    .owners-badge {
     
        left: 30px;
        padding: 18px 22px;
        max-width: 280px;
        gap: 10px;
    }

    .owners-badge span {
        font-size: 11px;
        padding: 6px 12px;
    }

    .owners-badge p {
        font-size: 14px;
    }

    .owner-features {
        gap: 20px;
        margin-top: 18px;
    }

    .feature-box {
        gap: 20px;
        padding: 20px 22px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .feature-icon i {
        font-size: 26px;
    }

    .feature-box h4 {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .feature-box p {
        font-size: 15px;
        line-height: 1.6;
    }

    .experience-section {
        padding: 80px 20px;
        background: #f8f9fc;
    }

    .experience-header {
        margin-bottom: 60px;
    }

    .experience-tag {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .experience-header h2 {
        font-size: 36px;
      
    }

    .experience-header p {
        font-size: 16px;
        max-width: 600px;
        margin: 0 auto;
    }

    .experience-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-top: 50px;
    }

    .experience-card {
        border-radius: 14px;
        transition: all 0.35s ease;
    }

    .experience-card:hover {
      
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .card-top {
        padding: 22px;
        min-height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .card-top h3 {
        font-size: 20px;
        font-weight: 700;
    }

    .card-top span {
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 600;
    }

    .experience-card li {
        padding: 18px 24px;
        font-size: 16px;
        line-height: 1.6;
        gap: 14px;
    }

    .tenant-section {
        padding: 60px 40px;
    }

    .tenant-wrapper {
        grid-template-columns: 55% 45%;
        gap: 70px;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }

    .tenant-content {
        gap: 15px;
    }

    .tenant-label {
        font-size: 13px;
        letter-spacing: 3.5px;
        margin-bottom: 14px;
    }

    .tenant-content h2 {
        font-size: 42px;
        line-height: 1.2;
    }

    .tenant-description {
        font-size: 17px;
        line-height: 1.9;
        max-width: 580px;
    }

    .tenant-feature-list {
        gap: 20px;
        margin-top: 18px;
    }

    .tenant-feature-card {
        gap: 20px;
        padding: 20px 22px;
    }

    .tenant-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .tenant-icon i {
        font-size: 26px;
    }

    .tenant-feature-card h4 {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .tenant-feature-card p {
        font-size: 15px;
        line-height: 1.6;
    }

}

@media (min-width:1367px) {

    .faq-section {
        padding: 60px 0px;
    }

    .faq-tag {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .faq-heading h2 {
        font-size: 36px;
        margin: 12px 0 18px 0;
    }

    .faq-heading p {
        font-size: 16px;
        max-width: 600px;
    }

    .faq-box {
        padding-left: 55px;
        margin-top: 60px;
    }

    .faq-box::before {
        left: 20px;
        width: 2px;
    }

    .faq-item {
        padding: 24px 20px;
        margin-bottom: 32px;
        transition: all 0.35s ease;
    }

    .faq-item:hover {
     
        border-color: #FE8208;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .faq-icon {
        left: -55px;
        top: 26px;
        width: 44px;
        height: 44px;
        font-size: 18px;
        border: 4px solid #fff;
        box-shadow: 0 6px 16px rgba(83, 119, 48, 0.25);
    }

    .faq-content h3 {
        font-size: 16px;
        margin: 0 0 12px 0;
        font-weight: 700;
    }

    .faq-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .download-section {
        padding: 60px 0px;
    }

    .download-container {
        gap: 70px;
        margin: 0 auto;
    }

    .download-content {
        flex: 1;
    }

    .small-title {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .download-content h1 {
        font-size: 36px;
        margin: 12px 0 18px 0;
    }

    .download-content p {
        font-size: 16px;
        max-width: 550px;
    }

    .store-buttons {
        gap: 20px;
        margin-top: 32px;
    }

    .store-btns {
        max-width: 210px;
        padding: 16px 22px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .store-btns:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    }

    .store-btns img {
        width: 42px;
        height: 42px;
    }

    .store-text h4 {
        font-size: 15px;
    }

    .phone-box {
        flex: 1;
        min-height: 380px;
    }

    .phone-box img {
        width: 85%;
        max-width: 300px;
    }

    .security-section {
        padding: 60px 20px;
   
    }

    .security-container {
        gap: 70px;
        margin-bottom: 70px;
    }

    .security-tag {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .security-tag i {
        font-size: 16px;
    }

    .security-left h2 {
        font-size: 36px;
        margin: 12px 0 18px 0;
    }

    .security-left p {
        font-size: 16px;
        max-width: 550px;
    }

    .security-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }

    .security-card {
        padding: 28px 20px;
        transition: all 0.35s ease;
    }

    .security-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .security-card i {
        font-size: 46px;
        margin-bottom: 18px;
    }

    .security-card h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .security-card p {
        font-size: 14px;
    }

    .shield-icon {
        width: 175px;
        height: 176px;
        font-size: 76px;
        box-shadow: 0 15px 50px rgba(83, 119, 48, 0.2);
    }

    .shield-circle {
        width: 300px;
        height: 300px;
    }

    .rental-flow-section {
        padding: 85px 20px;
    }

    .journey-section {
        padding: 80px 30px;
        margin-top: 60px;
        border-radius: 24px;
    }

    .journey-title {
        font-size: 14px;
        letter-spacing: 3.5px;
        margin-bottom: 50px;
    }

    .journey-steps {
        flex-direction: row;
        gap: 0;
    }

    .journey-steps::before {
        display: block;
        top: 50px;
        height: 4px;
    }

    .journey-item {
        flex: 1;
    }

    .journey-number {
        width: 100px;
        height: 100px;
        font-size: 44px;
        margin-bottom: 22px;
        box-shadow: 0 12px 40px rgba(83, 119, 48, 0.2);
    }

    .journey-item.active .journey-number {
        box-shadow: 0 16px 48px rgba(254, 130, 8, 0.3);
    }

    .journey-item h5 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .journey-item p {
        font-size: 15px;
    }

    .flow-tag {
        font-size: 14px;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .flow-headers h2 {
        font-size: 36px;
        margin: 14px 0 18px 0;
    }

    .flow-headers p {
        font-size: 16px;
        margin-top: 14px;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .service-card {
        padding: 50px 24px;
        flex-direction: column;
        gap: 20px;
        border-radius: 0;
    }

    .service-card::before {
        display: none;
    }

    .service-card::after {
        right: -50px;
        width: 100px;
    }

    .service-card:last-child::after {
        display: none;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .service-card h4 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .service-card p {
        font-size: 15px;
        line-height: 1.6;
    }

}



/*==========================================
Laptop
==========================================*/

@media (max-width:1200px){

    .contact_page_wrapper{
        width:95%;
    }

    .contact_page_form{
        padding:35px;
    }

    .contact_page_title{
        font-size:36px;
    }

}

/*==========================================
Tablet
==========================================*/

@media (max-width:992px){

    .contact_page_section{
        padding:70px 0;
    }

    .contact_page_row{
        flex-direction:column;
        gap:20px;
    }

    .contact_page_form{
        padding:35px 30px;
    }

    .contact_page_title{
        font-size:34px;
    }

}

/*==========================================
Mobile
==========================================*/

@media (max-width:768px){

    .contact_page_section{
        padding:60px 0;
    }

    .contact_page_wrapper{
        width:94%;
    }

    .contact_page_heading{
        margin-bottom:35px;
    }

    .contact_page_badge{
        font-size:12px;
        padding:7px 18px;
    }

    .contact_page_title{
        font-size:30px;
    }

    .contact_page_subtitle{
        font-size:15px;
        line-height:26px;
    }

    .contact_page_form{
        padding:30px 20px;
        border-radius:16px;
    }

    .contact_page_row{
        margin-bottom:18px;
        gap:18px;
    }

    .contact_page_label{
        font-size:14px;
    }

    .contact_page_input{
        height:52px;
        font-size:14px;
        padding:0 15px;
    }

    .contact_page_textarea{
        min-height:140px;
        padding:15px;
        font-size:14px;
    }

    .contact_page_button_box{
        text-align:center;
    }

    .contact_page_submit_btn{
        width:100%;
        min-width:100%;
        height:52px;
        font-size:15px;
    }

}

/*==========================================
Small Mobile
==========================================*/

@media (max-width:480px){

    .contact_page_section{
        padding:50px 0;
    }

    .contact_page_wrapper{
        width:92%;
    }

    .contact_page_title{
        font-size:24px;
    }

    .contact_page_subtitle{
        font-size:14px;
    }

    .contact_page_form{
        padding:20px 15px;
    }

    .contact_page_input{
        height:48px;
        border-radius:10px;
    }

    .contact_page_textarea{
        min-height:120px;
        border-radius:10px;
    }

    .contact_page_submit_btn{
        height:48px;
        border-radius:10px;
        font-size:14px;
    }

}

/*==========================================
Extra Small Devices
==========================================*/

@media (max-width:360px){

    .contact_page_title{
        font-size:21px;
    }

    .contact_page_badge{
        font-size:11px;
    }

    .contact_page_input,
    .contact_page_textarea{
        font-size:13px;
    }

    .contact_page_submit_btn{
        font-size:13px;
    }

}

/*==========================================
TABLET
==========================================*/

@media (max-width:991px){

    .contact_page_address_box{
        padding:25px;
    }

    .contact_page_address_title{
        font-size:20px;
    }

    .contact_page_address_text{
        font-size:15px;
        line-height:28px;
    }

}

/*==========================================
MOBILE
==========================================*/

@media (max-width:767px){

    .contact_page_address_box{
        margin-top:25px;
        margin-bottom:25px;
        padding:20px;
        border-radius:12px;
    }

    .contact_page_address_title{
        font-size:18px;
        gap:8px;
    }

    .contact_page_address_title::before{
        width:36px;
        height:36px;
        font-size:15px;
    }

    .contact_page_address_text{
        font-size:14px;
        line-height:25px;
    }

}

/*==========================================
SMALL MOBILE
==========================================*/

@media (max-width:480px){

    .contact_page_address_box{
        padding:18px;
    }

    .contact_page_address_title{
        font-size:17px;
    }

    .contact_page_address_text{
        font-size:13px;
        line-height:23px;
    }

}