@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
       font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}

#home, #owners, #tenants, #agreements, #support, #contact {
    scroll-margin-top: 130px;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #f8f9fc;
    margin: 0px;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

h2{
margin: 10px 0px;    
}


.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 2px 0;
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, #FFF8F2 0%, #FFFFFF 50%, #F4FAF3 100%);
}

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

.logo img {
    height: 80px;
}
.blog-heading{
    margin-top:140px;
    font-size: 36px;
    line-height: 1.4;
    color: #111827;
    font-weight: 700;
    margin-bottom: 25px;
}

.navbar {
    display: block;
}
.nav-links .download-btn{
    color:white;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a{
    text-decoration: none;
    color: #111;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #537730, #FE8208);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-links li a:hover {
    background: rgba(254, 130, 8, 0.1);
    color: #FE8208;
}

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

.download-btn {
    padding: 8px 10px;
    border-radius: 6px;
    background: #FE8208;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    z-index: 1001;
}

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


.hero {
    /* background: linear-gradient(135deg,#c98d4b,#8b4fff); */
    /* min-height: 84vh; */
    position: relative;
    margin-top: 130px;
    padding: 20px 20px;
    /* background:
        radial-gradient(circle at top left,
            rgba(255, 170, 88, 0.45),
            transparent 38%),

        radial-gradient(circle at bottom right,
            rgba(255, 153, 180, 0.35),
            transparent 40%),

        radial-gradient(circle at top right,
            rgba(185, 224, 120, 0.22),
            transparent 30%),

        linear-gradient(135deg,
            #FFF6EB 0%,
            #FFFDFB 30%,
            #FFFFFF 55%,
            #FFF5F8 80%,
            #FFF8F2 100%); */
}

.hero-container {
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    /* background:
    radial-gradient(circle at top left,
        rgba(255, 170, 88, 0.45),
        transparent 38%),

    radial-gradient(circle at bottom right,
        rgba(255, 153, 180, 0.35),
        transparent 40%),

    radial-gradient(circle at top right,
        rgba(185, 224, 120, 0.22),
        transparent 30%),

    linear-gradient(
        135deg,
        #FFF6EB 0%,
        #FFFDFB 30%,
        #FFFFFF 55%,
        #FFF5F8 80%,
        #FFF8F2 100%
    ); */
    /* margin-bottom: 100px; */
}

.hero-content {
    /* max-width: 550px; */
    /* margin-bottom: -126px; */
    /* color: #fff; */
}

.badge {
    /* background: rgba(255,255,255,.2); */
    background: #537730;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
}

.hero h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin: 30px 0;
}

.hero h1 span {
    color:#FE8208;
}

.hero p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #537730;
    font-weight: 600;
}

.store-buttons {
    display: flex;
    gap: 20px;
    /* flex-wrap: wrap;*/
    margin-top: 20px; 
}

.store-btns {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 10px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    /* transition:.3s; */
}

/* .store-btns:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.08);
} */
.store-icons {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.store-text{
    line-height: 20px;
}



.store-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.store-text span {
    display: block;
    /* text-align: center; */
    font-size: 12px;
    color: #666;
    letter-spacing: .5px;
}

.store-text h4 {
    margin: 0px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* width: 500px; */
    height: 500px;
    /* margin-top: 140px; */
}

.hero-image img {
    /* height: 720px; */
    /* width: 100%;
    max-width: none; */
    /* filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4)); */
}

.wave {
    /* position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background: #fff;
    border-radius: 100% 100% 0 0; */
}


.info-section {
    /* margin-top: 40px; */
    /* background: radial-gradient(circle at top left, rgba(255, 170, 88, 0.45), transparent 38%), radial-gradient(circle at bottom right, rgba(255, 153, 180, 0.35), transparent 40%), radial-gradient(circle at top right, rgba(185, 224, 120, 0.22), transparent 30%), linear-gradient(135deg, #FFF6EB 0%, #FFFDFB 30%, #FFFFFF 55%, #FFF5F8 80%, #FFF8F2 100%); */
padding: 20px 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* margin-top: 50px; */
}

.card {
    background: #fff;
    padding: 25px 25px;
    border-radius: 12px;
    border: 1px solid #becbb0
        /* box-shadow: 0 15px 50px rgba(0, 0, 0, .08); */
}

.card h3 {
    color: #ff8500;
   
}



.card p {
    color: #666;
    line-height: 1.5;
    margin: 5px 5px;
}



.works {

    padding-top: 20px;
    padding-bottom: 60px;
    /* background:
        radial-gradient(circle at top left,
            rgba(255, 175, 85, .35),
            transparent 35%),

        radial-gradient(circle at top right,
            rgba(184, 228, 128, .25),
            transparent 30%),

        radial-gradient(circle at bottom right,
            rgba(255, 170, 205, .30),
            transparent 35%),

        linear-gradient(135deg,
            #FFF8F2 0%,
            #FFFFFF 38%,
            #FCFCFC 60%,
            #F5FAF0 82%,
            #FFFFFF 100%); */
}

.section-title {
    color: #537730;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 15px;
    /* background:
        radial-gradient(circle at 20% 15%, rgba(254, 130, 8, .22), transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(83, 119, 48, .18), transparent 32%),
        radial-gradient(circle at 90% 10%, rgba(255, 170, 200, .18), transparent 28%),
        linear-gradient(145deg,
            #FFFFFF 0%,
            #FFF8F2 25%,
            #FCFCFC 55%,
            #F5FAF1 100%); */

}

.works h2 {
   font-size: 42px;
        line-height: 1.2;
    font-weight: 600;
    margin: 4px 0;
    
}

.works h2 span {
    color: #FE8208;
}

.subtitle {
    color: #537730;
    margin-top:10px;
        line-height: 1.4;
    font-weight: 600;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
      border: 1px solid #dfdfdf;
    margin-top:30px;
}
    h4 {
        font-size: 17px !important;
    }
.step-card {
    padding: 20px 20px;
    text-align: center;
    border-right: 1px solid #ececec;
}

.step-card:last-child {
    border-right: none;
}

.icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.create {
    background: #EAF7FF;
}

.create i {
    color: #2196F3;
}

.browse {
    background: #FFF3E4;
}

.browse i {
    color: #FF9800;
}

.agreement {
    /* background: #FFF4E5; */
}

.agreement i {
    color: #F57C00;
}

.payment {
    /* background: #E9FFF0; */
}

.payment i {
    color: #4CAF50;
}

.step-card h4 {
    font-size: 15px;
    font-weight: 600;
    
}

.step-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.4;
    margin: 5px 5px;
}


/* .container{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
} */


/*=========================================
            OWNERS SECTION
=========================================*/

.owners-section {
    padding: 60px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.owners-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254, 130, 8, 0.05) 0%, transparent 70%);
    filter: blur(120px);
    top: -200px;
    right: -200px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.owners-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(83, 119, 48, 0.05) 0%, transparent 70%);
    filter: blur(120px);
    bottom: -180px;
    left: -180px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}



.owners-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


.owners-image {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: auto;
}

.owners-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

.owners-image::after {
    content: "";
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0));
}

.owners-badge {
    position: absolute;
    left: 20px;
    bottom: 100px;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1.5px solid rgba(83, 119, 48, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.owners-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.owners-badge span {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #FE8208 0%, #F89522 100%);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(254, 130, 8, 0.25);
    width: fit-content;
}

.owners-badge p {
    line-height: 1.6;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
}



.owners-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: auto;
}

.small-title {
    color: #537730;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.owners-content h2 {
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.owners-content h2 span {
    color: #FE8208;
}

.owner-desc {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    max-width: 550px;
}



.owner-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.feature-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fafbf8 0%, #ffffff 100%);
    border: 1.5px solid #e8ebe5;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.feature-icon {
    width: 56px;
    height: 56px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 0;
    position: relative;
    z-index: 1;
    /* background: #f0f0f0; */
    border: none;
    box-shadow: none;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

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


.orange {
    /* background: #F2ECFF; */
    color: #734EE1;
}

.blue {
    background: #EEF3FF;
    /* color: #5271FF; */
}

.green {
    /* background: #ECFFF4; */
    /* color: #22C55E; */
}

.yellow {
    background: #FFF8E5;
    color: #F59E0B;
}

.purple {
    /* background: #F3E8FF; */
    /* color: #8B5CF6; */
}

.red {
    background: #FFECEF;
    color: #EA5455;
}

.feature-box h4 {
    font-size: 15px;
    color: #111827;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.feature-box p {
    color: #666;
    line-height: 1.5;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}




/* =========================================
            TENANT SECTION
========================================= */

.tenant-section {
    padding: 60px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.tenant-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 130, 8, 0.04) 0%, transparent 70%);
    filter: blur(80px);
    top: -150px;
    right: -150px;
    opacity: 0.8;
    z-index: 0;
}

.tenant-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(83, 119, 48, 0.04) 0%, transparent 70%);
    filter: blur(80px);
    bottom: -100px;
    left: -100px;
    opacity: 0.8;
    z-index: 0;
}

.tenant-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 50px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tenant-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tenant-label {
    display: inline-block;
    color: #537730;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tenant-content h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.tenant-content h2 span {
    color: #FE8208;
}

.tenant-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
    max-width: 550px;
}

.tenant-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.tenant-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #f9faf8;
    border: 1.5px solid #e5e7eb;
    transition: all 0.35s ease;
    cursor: pointer;
}

.tenant-feature-card:hover {
  
    border-color: #FE8208;
    background: #fff;
    box-shadow: 0 8px 20px rgba(254, 130, 8, 0.12);
}

.tenant-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    margin-top: 0;
}

.tenant-feature-card:hover .tenant-icon {
    transform: scale(1.08);
}

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

.tenant-feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 3px 0;
    line-height: 1.3;
}

.tenant-feature-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.tenant-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Icon Colors */

.verified {
    background: #FFF8E5;
    color: #F59E0B;
}

.agreement {
    background: #FFF0E8;
    color: #FF7A00;
}

.payment {
    background: #ECFFF4;
    color: #22C55E;
}

.history {
    background: #EEF4FF;
    color: #5271FF;
}

.reminder {
    background: #FFF5D8;
    color: #F4B400;
}

.support {
    background: #F2ECFF;
    color: #734EE1;
}

.tenant-feature-card h4 {
    font-size: 15px;
    color: #111827;
    margin: 0px;
    font-weight: 700;
}

.tenant-feature-card p {
    color: #6B7280;
    line-height: 1.4;
    font-size: 15px;
    margin: 0px;
}

/* =========================================
            RIGHT IMAGE
========================================= */

.tenant-image-area {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.tenant-image-area img {
    width: 555px;
    height: 100%;
     object-position: center center;
    display: block;
   
}

.tenant-image-area::after {
    content: "";
    /* position:absolute;
    inset:0; */
    background: linear-gradient(to top,
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .05));
    z-index: 1;
}

.tenant-badge {
    position: absolute;
    left: 20px;
    bottom: 100px;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(10px);
    padding: 18px 22px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tenant-badge span {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #537730 0%, #6b9f3f 100%);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(83, 119, 48, 0.25);
    width: fit-content;
}

.tenant-badge p {
    line-height: 1.6;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}






/*==================================================
                RENTAL FLOW SECTION
==================================================*/

.rental-flow-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(254, 130, 8, 0.05) 0%, rgba(83, 119, 48, 0.05) 100%);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.rental-flow-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(254, 130, 8, 0.08) 0%, transparent 70%);
    filter: blur(90px);
    top: -100px;
    right: -100px;
    
}

.rental-flow-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(83, 119, 48, 0.08) 0%, transparent 70%);
    filter: blur(90px);
    bottom: -80px;
    left: -80px;
   
}

.flow-headers {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.flow-tag {
    display: inline-block;
    color: #537730;
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.flow-headers h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 12px 0 18px 0;
    font-weight: 700;
    color: #111827;
}

.flow-headers h2 span {
    color: #FE8208;
}

.flow-headers p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 500;
    margin-top: 12px;
    max-width: 700px;
    margin: 12px auto 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Connecting gradient line */
.service-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, #FE8208 0%, #FE8208 25%, #537730 50%, #537730 75%, #FE8208 100%);
    transform: translateY(-50%);
    border-radius: 2px;
}

.service-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 50px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -50%;
    top: 50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FE8208 0%, #537730 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.service-card:last-child::after,
.service-card:nth-child(3n)::after {
    display: none;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 3px solid #fff;
}

.service-card:hover .service-icon {
  
    box-shadow: 0 12px 40px rgba(254, 130, 8, 0.25);
}

.pink {
    background: #fff;
    color: #FF5A76;
}

.orange {
       background: #fcecdc;
    color: #FE8208;
}

.green {
       background: #e2e9dd;
    color: #537730;
}

.blue {
      background: #eaeffb;
    color: #4F7BFF;
}

.yellow {
       background: #fbf2d8;
    color: #F5B000;
}

.purple {
     background: #f2effb;
    color: #7A4DFF;
}

.service-card h4 {
    font-size: 16px;
    margin: 0;
    color: #111827;
    font-weight: 700;
    line-height: 1.4;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}



.journey-section {
    margin-top: 50px;
    padding: 70px 20px;
      background: linear-gradient(90deg, #f0b87e 0%, #98dc565e 100%);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.journey-title {
    display: block;
    text-align: center;
    font-size: 13px;
    letter-spacing: 3px;
    color: #537730;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

/* Connecting gradient line */
.journey-steps::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, #FE8208 0%, #FE8208 25%, #537730 50%, #537730 75%, #FE8208 100%);
    z-index: 1;
    border-radius: 2px;
}

.journey-item {
    position: relative;
    text-align: center;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.35s ease;
    cursor: pointer;
}

.journey-item:hover {
    transform: translateY(-8px);
}

.journey-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8FFF0 0%, #ECFFF4 100%);
    color: #537730;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 42px;
    box-shadow: 0 8px 24px rgba(83, 119, 48, 0.15);
    border: 3px solid #fff;
    position: relative;
  
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.journey-number::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8FFF0 0%, #ECFFF4 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: pulse 2s ease-in-out infinite;
    
}

@keyframes pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.journey-item.active .journey-number {
    background: linear-gradient(135deg, #FFF0E0 0%, #FFF5E9 100%);
    color: #FE8208;
    box-shadow: 0 12px 36px rgba(254, 130, 8, 0.25);
    
    animation: none;
}

.journey-item.active .journey-number::before {
    animation: none;
}

.journey-item:hover .journey-number {
    transform: scale(1.12) ;
    box-shadow: 0 14px 40px rgba(83, 119, 48, 0.25);
}

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

.journey-item h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #111827;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
    position: relative;
}

.journey-item h5::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FE8208, #537730);
    transition: width 0.4s ease;
    transform: translateX(-50%);
}

.journey-item:hover h5::after {
    width: 100%;
}

.journey-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}



/*============================================experience-section==================================================*/



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

.experience-header {
    text-align: center;
    margin-bottom: 50px;
}

.experience-tag {
    font-size: 13px;
    letter-spacing: 3px;
    color: #537730;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.experience-header h2 {
    font-size: 32px;
    font-weight: 700;
  
    line-height: 1.3;
    color: #111827;
}

.experience-header h2 span {
    color: #FE8208;
}

.experience-header p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

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

.experience-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.experience-card:hover {
  
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #fe83086c;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: #fff;
    min-height: 60px;
}

.owner-top {
    background: linear-gradient(135deg, #537730 0%, #6a8f3e 100%);
}

.tenant-top {
    background: linear-gradient(135deg, #537730 0%, #6a8f3e 100%);
}

.card-top h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.card-top span {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    background: #FE8208;
    color: #fff;
}

.experience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-card li {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.experience-card li:last-child {
    border-bottom: none;
}

.experience-card li i {
    font-size: 16px;
    min-width: 20px;
    color: #537730;
}

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

.tm-title {
    text-align: center;
    margin-bottom: 50px;
}

.tm-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    color: #537730;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tm-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 15px 0;
    line-height: 1.3;
    color: #111827;
}

.tm-title h2 span {
    color: #FE8208;
}

.tm-title p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.tm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.tm-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tm-card:hover {
   
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(254, 131, 8, 0.514);
}

.tm-review {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
   
    font-weight: 500;
}

.tm-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.tm-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.tm-avatar.owner {
    background: #FE8208;
}

.tm-avatar.tenant {
    background: #537730;
}

.tm-info {
    flex: 1;
}

.tm-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.tm-info span {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.tenant-textss {
    color: #FE8208;
    font-size: 30px;
    font-weight: 600;
}



.oran {
    background: #FE8208;
}

.gree {
    background: #537730;
}

.blu {
    background: #3B82F6;
}

.purpl {
    background: #8B5CF6;
}

.tm-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0px;
    /* margin: 10px 15px; */
}

.tm-info span {
    color: #777;
    font-size: 15px;
    /* font-weight: 600; */
    line-height: 1.4;
    /* margin: 10px 15px; */
}


/*========================================
        SECURITY SECTION
========================================*/

.security-section {
    padding: 60px 20px;
  
    position: relative;
    overflow: hidden;
   
}

.security-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(83, 119, 48, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    top: -100px;
    right: -100px;
    
}

.security-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.security-content {
    flex: 1;
}

.security-icon-box {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
}

.fa-solid,
.fas {
    font-weight: 900;
}

.security-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #537730;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.security-content h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin: 12px 0 18px 0;
    color: #111827;
}

.security-content h2 span {
    color: #FE8208;
}

.security-content p {
    color: #666;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 500px;
}

.shield-icon {
          width: 175px;
        height: 176px;
        font-size: 76px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #537730 0%, #6a8f3e 100%);
 
    color: #fff;
    z-index: 5;
    box-shadow: 0 15px 50px rgba(83, 119, 48, 0.2);
}

/*========================================
        SECURITY GRID
========================================*/

.security-grid {
   
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.security-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.security-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #FE8208;
}

.security-card i {
    font-size: 42px;
    color: #537730;
    margin-bottom: 16px;
    display: inline-block;
}

.security-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
    line-height: 1.4;
}

.security-card p {
    color: #666;
    line-height: 1.5;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}


/*================================================download-section===================================*/


.download-section {
    padding: 60px 0px;
    background: linear-gradient(135deg, #f8f9fc 0%, #faf8f6 100%);
    overflow: hidden;

    position: relative;
}

.download-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(254, 130, 8, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    top: -100px;
    left: -100px;
    
}

.download-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(83, 119, 48, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    bottom: -80px;
    right: -80px;
   
}

.download-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.download-content {
    flex: 1;
}

.small-title {
    display: inline-block;
    color: #537730;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.download-content h1 {
    font-size: 36px;
    line-height: 1.3;
    margin: 12px 0 18px 0;
    font-weight: 700;
    color: #111827;
}

.download-content h1 span {
    color: #FE8208;
}

.download-content p {
    color: #666;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    margin-top: 12px;
    line-height: 1.6;
    max-width: 500px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.store-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.store-btns:hover {
    transform: translateY(-3px);
    border-color: #FE8208;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.store-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-text span {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.store-text h4 {
    font-size: 14px;
    color: #111827;
    font-weight: 700;
    margin: 0;
}

.phone-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.phone-box img {
    width: 80%;
    max-width: 280px;
    animation: float 4s ease-in-out infinite;
}



.store-btns .fa-google-play {
    font-size: 34px;
    background: linear-gradient(135deg,
            #00E676 0%,
            #00BCD4 25%,
            #2196F3 45%,
            #F44336 72%,
            #FFD600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fa-apple {
    font-size: 32px;
    color: #222;

}

/* .store-btns{
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgb(255, 255, 255);
   
    border-radius: 6px;
    border: 1px solid rgb(83, 119, 48);
    text-decoration: none;
    width: 200px;
    text-align: center;
    left: 2px;
    justify-content: center;
   
    

} */


.store-btn:hover {

    /* transform: translateY(-5px); */

    /* background: #333; */

}


.store-btn img {

    width: 35px;

}


.store-btn small {

    display: block;

    color: #537730;

}


.store-btn b {

    font-size: 18px;

}


.ratings {

    margin-top: 30px;

    display: flex;

    gap: 40px;

    color: #537730;
    font-size: 15px;
    font-weight: 600px;
}


.phone-box {

    width: 35%;

    display: flex;

    justify-content: center;

}

.phone-box img {

    width: 100%;

    /* filter: drop-shadow(0 30px 40px black); */

    animation: float 4s infinite;

}


.join-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #537730 0%, #6a8f3e 100%);
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    top: -150px;
    left: -150px;
    pointer-events: none;
}

.join-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(254, 130, 8, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
}

.join-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.join-box span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.join-box h2 {
    margin: 0;
    font-size: 44px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.join-box h2 b,
.join-box h2 strong {
    color: #FE8208;
}

.join-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 32px;
}

.buttons {
    margin-top: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.buttons button {
    padding: 16px 42px;
    border: 2px solid #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #537730;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}
.join-box .owner:hover {
    background: hsl(60, 100%, 100%);
    color: #FE8208;
    border-color: hsl(60, 100%, 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.owner {
    background: #fff;
}

.owner:hover {
    background: #FE8208;
    color: #fff;
    border-color: #FE8208;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tenant {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.tenant:hover {
    background: #FE8208;
    color: #fff;
    border-color: #FE8208;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/*--------------------------------------footer--------------------------------------------*/
.footer {
    /* padding: 60px 0; */
    /* background: linear-gradient(135deg, #734EE1, #0f172a, #ff6a00); */

    margin-top: 50x;
    background: #537730;
    /* color: #537730; */
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  
    padding: 20px 20px;
}

.join-box .tenant {
    background: #FE8208;
    color: #fff;
    border-color: #FE8208;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.join-box .tenant:hover {
    background: #fff;
    color: #FE8208;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.footer-info h3,
.footer-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-info i {
    color: #fff;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 120px;
    height: auto;
    display: block;
    margin-bottom: 15px;
    position: relative;
    top: 10px;
}

.footer-logo p {
    margin: 0;
    font-size: 15px;
    letter-spacing: 3px;
    /* color: #537730; */
    color: #fff;
    text-transform: uppercase;
}

.footer-info {
    text-align: left;
}

/* .footer-info h3 {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
} */




.faq-section {
    padding: 60px 0px;
    background: linear-gradient(135deg, #f8f9fc 0%, #faf8f6 100%);
    
}

.faq-tag {
    display: inline-block;
    color: #537730;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
}

.faq-heading h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 12px 0 18px 0;
    color: #111827;
}

.faq-heading h2 span {
    color: #FE8208;
}

.faq-heading p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    margin-top: 12px;
    max-width: 600px;
}

/* FAQ AREA */

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

/* Timeline Line */

.faq-box::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #537730 0%, #537730 100%);
}

.faq-item {
    position: relative;
    margin-bottom: 28px;
    padding: 20px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FE8208;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-icon {
    position: absolute;
    left: -50px;
    top: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #537730 0%, #6a8f3e 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(83, 119, 48, 0.2);
}

.faq-content h3 {
    font-size: 15px;
    color: #111827;
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.4;
}

.faq-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* 
.faq-item:hover .faq-icon {
    transform: rotate(15deg) scale(1.15);
} */
/* 



/*++++++++++++++++++++++++++++++++++++++++++++++++++++++Blog refrence======================================================*/



/* 
* {
    margin: 0;
    padding: 0;
    box-box-sizing: border-box;
    }
 
    padding:100px 0;
    background:#f7faff;
    overflow:hidden;
    font-family: 'Inter', sans-serif; 
 
  */
.plat-up {
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0;
    line-height: 1.1;
    color: #FE8208;

}

.blog-sections {
    margin-top: 20px;

}



.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    display: inline-block;
    padding: 10px 22px;
    background: #537730;
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 18px;
    margin-top: 20px;
}

.section-heading h2 {
    font-size: 30px;
    color: #111;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-heading p {
    /* width:700px; */
    max-width: 100%;
    margin: auto;
    color: #537730;
    line-height: 1.8;
    font-size: 20px;
}

.blog-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}


.blog-card {
    width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* box-shadow:0 10px 40px rgba(0,0,0,.08); */
    /* transition:.4s; */



}

/* .blog-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(37,99,235,.18);
    } */

.blog-image {
    position: relative;
    width: 100%;
    height: 300px;
   background-image: url("../images/blog-img-1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-images {
    position: relative;
    width: 100%;
    height: 300px;
  background-image: url("../images/blog-img-1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blogs-image {
    position: relative;
    width: 100%;
    height: 300px;
  background-image: url("../images/blog-img-1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}





.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* display:block;
    transition:.5s; */
}

/* .blog-card:hover .blog-image img{
    transform:scale(1.08);
    } */

/* Image Overlay */
.blog-image::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background:linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0)); */
    z-index: 1;
}

/* Category Badge */
.blog-badge {
    position: absolute;
    /* top:10px; */
    left: 3px;
    background: #537730;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 5;
    bottom: 5px;
}

.blog-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 14px;
    color: #6b7280;
}

/* .blog-meta span{
    display:flex;
    align-items:center;
    gap:6px;
    color: #537730;
    }
  */

.blog-title {
    margin-bottom: 18px;
}

.blog-title a {
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: .3s;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}

.blog-title a:hover {
    color: #537730;
}


.blog-description {
    color: #111;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8f1ff;
}

.author h5 {
    margin: 0;
    font-size: 15px;
    color: #111827;
    font-weight: 600;
}

.author span {
    font-size: 12px;
    color: #6b7280;
    color: #537730;
    font-weight: 600;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-top:1px solid #e5e7eb; */
    /* padding-top:10px; */

    /* margin-top: auto; */
}

.blog-footer a {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
    transition: .3s;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.blog-footer a:hover {
    color: #0f4fd6;
    letter-spacing: .5px;
}

.view-all {
    text-align: center;
    margin-top: 60px;
}

.view-all a {
    display: inline-block;
    padding: 16px 40px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(37, 99, 235, .25);
}

.view-all a:hover {
    background: #1749c7;
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(37, 99, 235, .35);
}


.footers-logo img {
    width: 150px;
    height: auto;
    display: block;
    margin-bottom: 15px;
    position: relative;
    top: 10px;
}

.footers-logo p {
    font-size: 20px;
    color: #fff;
}

.blog-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
}

.blog-meta i {
    color: #FE8208;
    font-size: 15px;
}







/*==========================================blog details==============================================*/



/* .blog-category{
    display: inline-block;
    padding: 8px 18px;
    background: #FE8208;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
} */

.blog-heading {
    font-size: 30px;
    line-height: 1.3;
    color: #222;
    margin-bottom: 40px;
    text-align: center;
}



.blog-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    font-size: 14px;
    justify-content: space-between;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 15px;
}

.meta-item i {
    color: #FE8208;
}

.rent-h {
    color: #FE8208;
}




.blog-header {
   
    text-align: left;
}



.blog-banner {
    position: relative;
    width: 100%;
    height: 380px;
    background-image: url("../images/blog-img-1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}


.blog-section-list {
    margin: 20px 0;
    padding-left: 25px;
    list-style: disc;
}

.blog-section-list li {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
}

.blog-section-list li:last-child {
    margin-bottom: 0;
}

.blog-body {
   
    background: #f8f9fc;
}

.blog-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 35px;
   
    margin: 0 auto;
}

.blog-main-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    line-height: 1.8;
}

.blog-sidebar {
    position: sticky;
    top: 180px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    font-size: 16px;
    color: #111827;
    margin: 0 0 18px 0;
    font-weight: 700;
    border-bottom: 3px solid #FE8208;
    padding-bottom: 12px;
}

.related-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.related-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-item img {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
}

.related-item a {
    font-size: 13px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    transition: 0.3s;
}

.related-item a:hover {
    color: #FE8208;
}



/* .blog-section img{
    width:100%;
    border-radius:15px;
    margin:25px 0;
} */





.table-content h2 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 700;
}

.table-content ul {
    margin-top: 15px;
    padding-left: 25px;
    list-style: decimal;
}

.table-content li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
}



.blog-section {
    margin: 40px 0;
}

.blog-section h2 {
    font-size: 26px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-section ul {
    margin: 20px 0;
    padding-left: 25px;
    font-size: 15px;
}

.blog-section li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}



blockquote {
    margin: 30px 0;
    padding: 25px;
    background: #fff8ef;
    border-left: 5px solid #FE8208;
    border-radius: 10px;
    font-style: italic;
    color: #444;
}



.tip-box {
    background: linear-gradient(135deg, #E8F8E3 0%, #F0FAE8 100%);
    border-left: 5px solid #537730;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

.tip-box h3 {
    color: #537730;
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
}



.warning-box {
    background: linear-gradient(135deg, #FFE8E8 0%, #FFF0F0 100%);
    border-left: 5px solid #E74C3C;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

.warning-box h3 {
    color: #E74C3C;
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
}



.faq-section {
        padding: 10px 10px;
    
}

/* .faq-item{
    background:#fff;
    padding:25px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 10px 20px rgba(0,0,0,.05);
} */

.faq-item h4 {
    margin-bottom: 10px;
}



.blog-tags {
   padding: 20px 25px;
    margin-top: -30px;
}

.blog-tags a {
    display: inline-block;
    padding: 10px 18px;
    background: #f3f3f3;
    border-radius: 30px;
    margin: 8px;
    color: #444;
    text-decoration: none;
    transition: .3s;
}

.blog-tags a:hover {
    background: #537730;
    color: #fff;
}



.author-box {
    padding: 10px 5px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    /* margin:50px 0;
    box-shadow:0 10px 25px rgba(0,0,0,.05); */
}

.author-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    background: #537730;
    ;
}

.author-box h3 {
    margin-bottom: 8px;
}

.author-box span {
    color: #537730;
    font-weight: 600;
}


.blog-sidebar {
    position: sticky;
    top: 180px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #becbb0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 18px;
    color: #111827;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #FE8208;
}

.related-blog-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.related-blog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-blog-item img {
    width: 85px;
    height: 85px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-blog-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    color: #FE8208;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-blog-item h5 {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #111827;
}

.related-blog-item a {
    text-decoration: none;
    color: #111827;
    transition: 0.3s ease;
}

.related-blog-item a:hover {
    color: #FE8208;
}

.blog-date {
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f0f0f0;
    border: 1px solid #becbb0;
    border-radius: 20px;
    font-size: 12px;
    color: #537730;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.tag:hover {
    background: #FE8208;
    color: #fff;
    border-color: #FE8208;
}

.newsletter-widget {
    background: linear-gradient(135deg, rgba(254, 130, 8, 0.1), rgba(83, 119, 48, 0.1));
    border: 1px solid #FE8208;
}

.newsletter-widget p {
    font-size: 14px;
    color: #555;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px 12px;
    border: 1px solid #becbb0;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FE8208;
    box-shadow: 0 0 8px rgba(254, 130, 8, 0.2);
}

.btn-subscribe {
    padding: 10px 15px;
    background: linear-gradient(135deg, #537730, #FE8208);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 130, 8, 0.3);
}



.blog-image {}

/*====================================================
CONTACT PAGE
====================================================*/

.contact_page_section{
    width:100%;
    padding:80px 0;
    background:#f5f7fb;
}

.contact_page_section *{
    box-sizing:border-box;
}

.contact_page_wrapper{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/*====================================================
HEADING
====================================================*/

.contact_page_heading{
    text-align:center;
    margin-bottom:50px;
    margin-top: 50px;
}

.contact_page_badge{
    display:inline-block;
    padding:12px 15px;
    background:#FE8208;
    color:#fff;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:15px;
}

.contact_page_title{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
    line-height:1.3;
}

.contact_page_subtitle{
    max-width:650px;
    margin:auto;
    color:#537730;
    font-size:16px;
    line-height:28px;
    font-weight: 600;
}

/*====================================================
FORM
====================================================*/

.contact_page_form{
    margin-top:45px;
    background:#ffffff;
    padding:45px;
    border-radius:12px;
    border:1px solid #edf1f7;
    /* box-shadow:0 18px 45px rgba(0,0,0,.08); */
}

.contact_page_row{
    display:flex;
    gap:25px;
    margin-bottom:22px;
}

.contact_page_field{
    flex:1;
    display:flex;
    flex-direction:column;
}

/*====================================================
LABEL
====================================================*/

.contact_page_label{
    font-size:15px;
    font-weight:600;
    color:#1f2937;
    margin-bottom:8px;
}

.contact_page_label span{
    color:#ef4444;
}

/*====================================================
INPUT
====================================================*/

.contact_page_input,
.contact_page_textarea{
    width:100%;
    border:1px solid #d7dde7;
    border-radius:12px;
    background:#ffffff;
    padding:12px 15px;
    font-size:13px;
    color:#374151;
    transition:.35s;
    outline:none;
}

.contact_page_input{
    height:50px;
}

.contact_page_textarea{
    resize:none;
    min-height:180px;
}

.contact_page_input::placeholder,
.contact_page_textarea::placeholder{
    color:#9ca3af;
}

.contact_page_input:focus,
.contact_page_textarea:focus{
    border-color:#16a34a;
    box-shadow:0 0 0 4px rgba(22,163,74,.12);
}

/*====================================================
BUTTON
====================================================*/

.contact_page_button_box{
    margin-top:30px;
}

.contact_page_submit_btn{
    min-width:155px;
    height:50px;
    padding:0 35px;
    border:none;
    border-radius:12px;
    background:#537730;
    color:#ffffff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}

.contact_page_submit_btn:hover{
    background:#15803d;
    /* transform:translateY(-3px); */
    /* box-shadow:0 18px 35px rgba(22,163,74,.25); */
}

/*==========================================
OFFICE ADDRESS BOX
==========================================*/

.contact_page_address_box{
    margin-top:30px;
    margin-bottom:30px;
    padding:30px;
    /* background:#f8fafc; */
    border:1px solid #e5e7eb;
    /* border-left:5px solid #16a34a; */
    border-radius:16px;
    transition:.35s ease;
}

.contact_page_address_box:hover{
    background:#ffffff;
    /* border-color:#16a34a; */
    /* box-shadow:0 15px 35px rgba(22,163,74,.12); */
}

.contact_page_address_title{
    margin:0 0 15px;
    font-size:22px;
    font-weight:700;
    color:#111827;
    display:flex;
    align-items:center;
    gap:10px;
}

.contact_page_address_title::before{
    content:"\f3c5";
    font-family:"FontAwesome";
    width:42px;
    height:42px;
    background:#537730;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.contact_page_address_text{
    margin:0;
    color:#6b7280;
    font-size:16px;
    line-height:30px;
}