:root{
    --primarycolor:#ff5a3c;
    --secondary-color:#f3f3f3;

}
body {
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #f3f3f3!important;
}
.gallery_padding{
    margin-top: 20px;
}

.padding_section{
    padding: 90px 0px   ;
}
   /* Property Header */
        .property-header {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .property-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .tag {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
        }
        
        .tag.featured {
            background: #4CAF50;
            color: white;
        }
        
        .tag.sale {
            background: #FF9800;
            color: white;
        }
        
        .property-title {
            font-size: 28px;
            margin-bottom: 10px;
            color: #222;
        }
        
        .property-location {
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .property-price {
            font-size: 24px;
            font-weight: bold;
            color: var(--primarycolor);
        }
        
        /* Main Content Layout */
        .content-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        .pagenewallsame{
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        
        /* Left Column - Property Info */
        .property-info {
            background: white;
            padding: 20px;
            border-radius: 8px;
            /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
        }
        
        .section {
            margin-bottom: 30px;
        }
        
     
        .property-description {
            color: #555;
            line-height: 1.8;
        }
        
        /* Property Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        @media (max-width: 576px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .feature-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .feature-label {
            font-weight: 600;
        }
        
        .feature-value {
            color: #666;
        }
        
        /* Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        
        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
        }
        
        /* Facilities */
        .facilities {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .facility {
            background: #e3f2fd;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
        }
        
        /* Right Column - Sidebar */
     .sidebar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: max-content;
    position: sticky;
    top: 79px;
}
        .contact-box {
            text-align: left;
            margin-bottom: 20px;
        }
        
        .contact-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: var(--primarycolor);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            margin-bottom: 15px;
            transition: background 0.3s;
        }
        
        .contact-btn:hover {
            background: var(--primarycolor);
        }
        
        .video-container {
            margin: 20px 0;
        }
        
        .video-container iframe {
            width: 100%;
            height: 200px;
            border-radius: 5px;
        }
        
        /* Map */
        .map-container {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .map-placeholder {
            height: 300px;
            background: #e0e0e0;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 100;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .modal-title {
            font-size: 22px;
        }
        
        .close-modal {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 12px;
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }
        
        /* Success Message */
        .success-msg {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
.site-logo-new{
    width: 70px;
    height: 70px;
}
.site-logo-new img{
    height: 100%;
    object-fit: contain;
    width: 100%;
}
    .float{
    position:fixed;
    width:40px;
    height:40px;
    bottom:20px;
    right:10px;
    color:#FFF;
    border-radius:50px;
    text-align:center;
  font-size:30px;
  z-index:100;
}

.my-float{
    margin-top:16px;
}
    .float-mobile{
    position:fixed;
    width:40px;
    height:40px;
    bottom:20px;
    left:10px;
    color:#FFF;
    border-radius:50px;
    text-align:center;
  font-size:30px;
  z-index:100;
}

.my-float{
    margin-top:16px;
}
/* heading all  */
.viewall {
    position: relative;
    display: inline-block;
    background: var(--primarycolor);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--secondary-color);
    padding: 17px 58px 17px 24px;
    border: none;
    overflow: hidden;
    outline: none;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}
.viewall::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    width: 24px;
    height: 24px;
    background-image: url('../img/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}
.section-title .section-sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: normal;
    color: #000;
    background-color: var(--secondary-color);
    border-radius: 100px;
    padding: 8px 16px 8px 32px;
    margin-bottom: 15px;
}.section-title .section-sub-title::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primarycolor);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}
.section-row {
    margin-bottom: 80px;
}
.section-title h2 {
    font-size: 50px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-top: 0px;
    margin-bottom: 0;
    cursor: none;
}
/* heading all  */
.header_all{
        padding: 10px 0px;
    background: var(--primarycolor);
}
.custum_property h2 a{
           font-weight: 500;
    font-size: 20px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.custum_property .search-by-place-btn{
    padding: 10px;
    width: auto;
    height: auto;
    line-height: normal;
    font-weight: 500;
    background-color: #0985C3;
    transition: 0.3s ease-in all;
    display: inline-block;
    color: #fff;
    border-radius: 5px;
}
.custum_property .search-by-place-btn a{
    color: #fff!important;
}
.custum_property{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: start;
    align-items: start;
}


.subtitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.08em;
    display: inline-block;
    text-transform: uppercase;
    color: var(--primarycolor);
    margin-bottom: 4px;
}
.webheading {
        text-transform: capitalize;
    font-weight: 800;
        color: #161E2D;
            font-size: 36px;
}
.counterimage{
    background: url('../img/bgimage.jpg');
        background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;

}


/* home slider  */
/* --- Hero Section --- */
.hero-section {
    display: flex;
    align-items: center;
    gap: 50px;
   
}
.hero-slide-item{
     align-content: end;
    padding: 350px 0 80px;
    margin-top: 20px;
}
.hero-content-box .section-sub-title {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin-bottom: 40px;
}

.text-anime-style-2 {
    position: relative;
    overflow: hidden;
}

/* Counters Box */


.hero-counter-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
}

.hero-counter-item h2 {
    font-size: 36px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.hero-counter-item p {
    font-size: 16px;
    color: #fff;
    margin-top: 5px;
}

/* Button */
.hero-btn a.btn-default {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn a.btn-default:hover {
    background: #e65a00;
    transform: translateY(-3px);
}

/* Rating Box */
.hero-rating-box {
    text-align: left;
}

.hero-rating-box-header h3 {
    font-size: 32px;
    color: #222;
    display: inline-block;
    font-weight: 700;
}

.hero-rating-box-header p {
    display: inline-block;
    color: #ffb400;
    font-size: 18px;
    margin: 0;
}

.hero-rating-box-content p {
    font-size: 14px;
    color: #fff;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-counter-list {
        justify-content: center;
    }

    .hero-rating-box {
        text-align: center;
    }
}

.slider_all {
    position: relative;
    z-index: 2;
}
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-slider{
    position: relative;
    z-index: 2;
}
.hero-slide-item {
    position: relative;
    z-index: 3;
}
.hero-slide-item::before {
     content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #00000047 50%, #000 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.newall{
    position: relative;
    z-index: 1;
}
/* Video */

/* Overlay */
/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
} */

/* Content */
.hero-slide-inner {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #fff;
    padding: 20px;
}

.hero-subtitle {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
            margin-top: 5px;
}



/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

.hero-prev { left: 25px; }
.hero-next { right: 25px; }

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
  

    .hero-title {
        font-size: 30px;
    }
}
/* home slider  */
/* our property  */
.property-slider {
    position: relative;
}

.property-slide-item {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    margin: 10px;
}
.propertyallnew{
    height: 360px;

}
.property-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.property-slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.property-title {
    font-size: 22px;
    margin: 0 0 8px 0;
}

.property-title a {
    color: #fff;
    text-decoration: none;
}

.property-location {
    display: inline-block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.property-location i {
    margin-right: 6px;
}

.property-btn a {
    display: inline-block;
    padding: 10px 20px;
    background: #ff5a3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.property-btn a:hover {
    background: #e14b2f;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .property-slide-item { height: 300px; }
    .property-title { font-size: 20px; }
}

@media (max-width: 576px) {
    .property-slide-item { height: 250px; }
    .property-title { font-size: 16px; }
    .property-slide-content { bottom: 15px; left: 15px; }
}
/* our property  */
/* slider testimonsial  */
.testimonial-item {
    padding: 15px;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    margin: 0;
    font-size: 16px;
}

.testimonial-info span {
    font-size: 14px;
    color: #777;
}

/* slider testimonsial  */

/* blog  */
.blog-slider {
    margin: 20px;
}

.blog-slide-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin: 10px;
    padding: 10px;
}
.blog-author{
    display: flex;
}
.blog-img{
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 250px;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    border-bottom: 1px solid #eee;
}
.blog-footer{
    border-top: 1px solid #cccccc6f;
    padding-top: 10px;
}
.readmore a{
  position: relative;
    display: inline-block;
    color: #040618;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    padding-right: 10px;
}
.readmore img{
    mix-blend-mode: difference;
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-title {
    font-size: 18px;
    margin: 0 0 10px 0;
    height: 58px;
}
.blog-category {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin: 0px;
    text-transform: lowercase;
}

.blog-title a {
    text-transform: capitalize;
    color: #333;
    text-decoration: none;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.blog-readmore {
    color: #ff5a3c;
    text-decoration: none;
}

.blog-readmore:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-title { font-size: 16px; }
}

@media (max-width: 576px) {
    .blog-title { font-size: 14px; }
    .blog-content { padding: 10px; }
}

/* blog  */


/* our expert  */
.team-slider {
    margin: 20px;
}

.team-slide-item {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin: 10px;
}
.team-info{
    padding: 0px;
    text-align: left;
}

.team-img img {
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    object-fit: cover;
    margin-bottom: 15px;
}
.team-info .team-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.team-info .team-role,
.team-info .team-exp {
    font-size: 14px;
    color: #777;
    margin-bottom: 3px;
}

/* Responsive */
@media (max-width: 992px) {
    .team-img img { width: 100px; height: 100px; }
    .team-info .team-name { font-size: 16px; }
}

@media (max-width: 576px) {
    .team-img img { width: 80px; height: 80px; }
    .team-info .team-name { font-size: 14px; }
}

/* our expert  */


/* poroperty slider all  */

        .custom-property-slider .property-slide {
            padding: 15px;
            box-sizing: border-box;
        }

        .property-item {
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
            transition: transform 0.3s, box-shadow 0.3s;
        }


        .property-img {
            position: relative;
        }

        .property-img img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .property-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 5px 12px;
            color: #fff;
            font-weight: bold;
            font-size: 14px;
            border-radius: 5px;
        }

        .bg-green { background-color: #28a745; }
        .bg-blue { background-color: #007bff; }
        .bg-orange { background-color: #fd7e14; }

        .property-meta {
            display: flex;
            justify-content: space-between;
            padding: 8px 12px;
            font-size: 14px;
            color: #555;
            text-align: left;
            position: absolute;
            bottom: 0px;
            right: 0px;
        }
          .property-meta {
            display: flex;
            gap: 5px;
          }
         
        .property-meta span{
            background: #f1f1f1;
    padding: 5px;
    border-radius: 2px;
        }

        .property-meta i { margin-right: 5px; }

       .property-info{
        text-align: left;
        padding: 10px;
       }
        .property-info .price {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
        }

        .property-info .title {
            font-size: 16px;
            margin-bottom: 10px;
            color: #007bff;
            text-decoration: none;
        }

        .property-info .description {
            font-size: 14px;
            color: #666;
            height: 100px;
            overflow: hidden;
        }
 .addressdesiogn{
        height: 30px;
    text-align: left;
    display: flex;
    gap: 10px;
    align-items: center;
          }
          .property-info .description {
    font-size: 14px;
    color: #666;
    height: 110px;
    overflow: overlay;
}
.footerproperty{
    border-top: 1px solid #e3e3e3;

}
.footerproperty .price{
        text-align: left;
    font-weight: 600;
    padding: 10px;
    font-size: 18px;
}
.property-info .title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    height: 55px;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
        /* Slick custom arrows */
        .slick-prev, .slick-next {
            width: 35px;
            height: 35px;
            z-index: 10;
        }

        .slick-prev:before, .slick-next:before {
            font-size: 35px;
            color: #007bff;
        }
/* poroperty slider all  */


/* news letter  */.newsletter-area {
    position: relative;
    padding: 90px 0;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
}



.newsletter-wrap {
  position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/intro-video-bg-prime.jpg);
    border-radius: 25px;
    padding: 40px 79px;
    background-position: top;
}

.newsletter-content {
    max-width: 550px;
    color: #fff;
}

.newsletter-content h2 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #fff;
}

.newsletter-form {
    max-width: 520px;
        display: flex;
    max-width: 520px;
    align-items: center;
    position: relative;
}

.newsletter-form input {
   flex: 1;
    padding: 15px 22px;
    border: none;
    outline: none;
    font-size: 15px;
    margin-bottom: 0px;
    height: auto;
    border-radius: 7px;
}

.newsletter-form button {
      background: var(--primarycolor);
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    position: absolute;
    right: 5px;
    border-radius: 7px;
}

.newsletter-form button:hover {
    background: var(--primarycolor);
}

.newsletter-img img {
    max-width: 320px;
}

.newsletter-img{
         position: absolute;
    bottom: 0%;
    left: 61%;
    transform: translate(0%, 0%);
}
/* Responsive */
@media(max-width:992px){
    .newsletter-wrap {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        margin: 0 auto;
    }

    .newsletter-img img {
        max-width: 300px;
    }
}

/* news letter  */

/* about us page  */
.section-title-pages{
        line-height: 1.3;
    font-size: 45px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
    margin-top: 0px;
    font-style: italic;
}
.about-media-wrapper {
    position: relative;
    max-width: 92%;
}

.about-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Video Box */
.about-video-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
}

.video-thumbnail {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;

}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    inset: 0;
    background: rgb(255 90 60);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    transition: 0.3s ease;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.values-section {
    padding: 40px 0 40px;
}
.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 0;
    padding: 0;
}

.value-card {
   background: var(--secondary-color);
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    margin-top: 0px;
    border: 1px solid #ccc;
}


.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primarycolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.value-icon i {
    font-size: 28px;
    color: #fff;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.value-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
}

/* Highlight first card (optional) */
.value-card:first-child .value-icon {
    background: var(--primarycolor);
}

/* Responsive */
@media(max-width:768px){
    .values-section {
        padding: 60px 0 20px;
    }
}


/* Pulse Animation */
.video-play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Responsive */
@media(max-width:768px){
    .about-video-box {
        right: 10px;
        bottom: 10px;
    }

    .video-thumbnail {
        width: 120px;
        height: 120px;
    }
}
.footer-top-area{
    background-image: url('../img/footerbgall.png');
 background-color: #161e2d;
    background-size: cover;
    background-repeat: no-repeat;
}
/* .footer-top-area:before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #000000cc;
} */
.ltn__blog-im{
    height: 300px;
    width: 100%;
}
.ltn__blog-im img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Wrapper */
.blog-details-wrap {
    width: 100%;
}

/* Card */
.blog-details-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Inner content */
.blog-details-brief {
    padding: 10px;
    position: relative;
}

/* Category */
.blog-details-category a {
    display: inline-block;
    background: #caa169; /* golden tone */
    color: #fff;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
}

/* Image */
.blog-details-img {
    border-radius: 10px;
    overflow: hidden;
}
.realrete{
   position: absolute;
    z-index: 1;
    background: #ff5a3c;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    top: 25px;
    left: 25px;
}
.blog-details-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.blog-details-img{
    height: 280px;
    width: 100%;
}
.blog-details-img img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}


/* Title */
.blog-details-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    height: 40px;
    margin:0px;
}
.blog-details-wrap h2,
.blog-details-wrap h3,
.blog-details-wrap h4,
.blog-details-wrap h5,
.blog-details-wrap h6{
    font-size: 14px!important;
}
.blog-details-title a {
       color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
}



/* Meta common */
.blog-details-meta {
    margin: 8px 0;
}

.blog-details-meta ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-details-meta li {
    font-size: 14px;
    color: #777;
}

/* Author */
.blog-details-author a {
    font-size: 14px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
}

.blog-details-author i {
    margin-right: 6px;
    color: #caa169;
}

/* Date */
.blog-details-date {
    font-size: 14px;
    color: #777;
}

.blog-details-date i {
    margin-right: 6px;
    color: #caa169;
}

/* Description */
.blog-details-brief p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-top: 20px;
}
.gap-custum{
    row-gap: 10px;
}

/* Button */
.blog-details-meta-btn {
    margin-top: 30px;
}
.blog-details-btn a:hover,
.blog-details-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primarycolor);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* about us page  */
.ltn__breadcrumb-area-contact{
    position: relative;
    background: url('../img/intro-video-bg-prime.jpg')!important;
        background-position: center;
}
.ltn__breadcrumb-area-contact:before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
      background: linear-gradient(180deg, #ffffff00, #020000);
}
.contact-form-box {
    background: #ffffff;
    margin: 50px 0px;
}
.bg-image{
       position: relative;
    background: url('../img/intro-video-bg-prime.jpg')!important;
      background-position: center;
    background-size: cover !important;
}
.bg-image:before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
      background: linear-gradient(180deg, #ffffff00, #020000);
}
.ltn__call-to-action-4 {
        padding: 100px 0px;
}
.questionyou{
    color: #fff;
}
.ltn__gallery-item-img{
    height: 250px;
}
.ltn__gallery-item-img img{
    width: 100%;
    height: 100%;
}
.ltn__gallery-item-info h4 a{
    color: #000;
}
.btn {
    display: inline-block;
    padding: 10px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #ffffff!important;
    border-radius: 4px;
}
/* product details page  */
 /* MAIN WRAPPER */
        .prop-slider-area {
            padding: 40px 0;
        }

        /* GAP BETWEEN SLIDES (UNIQUE) */
        .prop-slider .slick-slide {
            padding: 0 15px;
        }

        .prop-slider {
            position: relative;
        }

        /* IMAGE CENTER */
        .prop-img-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prop-img-center img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 10px;
            transition: all 0.4s ease;
        }

        /* ACTIVE CENTER SLIDE */
        .prop-slider .slick-center img {
            transform: scale(1.05);
        }

        /* CUSTOM ARROWS */
        .prop-prev,
        .prop-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 45px;
            height: 45px;
            background: rgba(0,0,0,0.6);
            border-radius: 50%;
            border: none;
            color: #fff;
            cursor: pointer;
        }

        .prop-prev { left: 20px; }
        .prop-next { right: 20px; }

        .prop-prev i,
        .prop-next i {
            font-size: 22px;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .prop-img-center img {
                height: 280px;
            }
        }
/* product details page  */
@media(max-width:768px){
    .prop-slider-area {
    padding: 0px;
}
.ltn__breadcrumb-area {
    background-color: var(--section-bg-1);
    padding-top: 120px;
    padding-bottom: 43px;
}
.section h3,
.map-container h3{
           margin: 0px;
        font-weight: 500;
        margin-bottom: 10px;
}
.property-header {

    margin-top: 12px;
}
    .value-card {
    padding: 25px 20px;
}
    .newsletter-wrap {
    padding: 10px 10px;
}
.newsletter-form button {
    padding: 10px 9px;
}
.ltn__right-sidebar {
    margin-top: 20px;
}
.blog-details-wrap h1{
    font-size: 24px;
}
.newsletter-img{
    display: none;
}
.newsletter-area {
    padding: 25px 0;
}
.newsletter-content h2 {
    font-size: 22px;
}
    .hero-btn a.btn-default {
    padding: 12px 15px;
    font-size: 13px;
    white-space: nowrap;
}
.hero-counter-item h2 {
    font-size: 20px;
}
.hero-counter-item p {
    font-size: 10px;
}
.hero-content-box .section-sub-title {
    display: block;
    font-size: 13px;
    text-align: center;
}
.hero-arrow {
    top: 94%;
    background: rgb(255 255 255 / 60%);
}
.hero-title {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 500;
    font-style: italic;
    text-align: center;
}
.hero-slide-item {
    padding: 150px 0 57px;
}
.ltn__header-options-2 .mobile-menu-toggle > a {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}
.section-title{
    margin-top: 20px;
}
.section-title-pages {
    font-size: 23px;
}
.about-us-info-wrap .btn-wrapper {
    margin-bottom: 30px;
}
.section-title h2 {
    font-size: 23px;
}
.team-slide-item {
    margin: 0px;
}
.ltn__utilize-menu > ul > li > a {
    padding: 8px 24px 8px 0;
    color: #000;
}
.about-video-box {
    bottom: -40px;
}
.ltn__call-to-action-4 {
    padding: 40px 0px;
}
.viewall {
    padding: 11px 33px 11px 14px;
}
.viewall::before {
    right: 4px;
}
.footer-widget {
    margin-bottom: 10px;
}

.padding_section{
    padding: 50px 0px   ;
}
.counterimage {
    background: url('../img/bgimage.jpg');
    background-size: 143% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
}

@media(max-width:590px){
    .hero-arrow {
    top: 85%;
 }
}