/* Hero Banner Styles */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    padding: 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url("/images/first_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-size: cover;
    background-position: center center;
}

.building-wireframe {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    opacity: 0.06;
    z-index: 1;
}

.building-svg {
    width: 400px;
    height: 320px;
}

.building-outline {
    animation: fadeInDraw 3s ease-in-out forwards;
}

.animate-draw {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-in-out forwards;
}

.animate-draw-delay-1 {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 1s ease-in-out 0.5s forwards;
}

.animate-draw-delay-2 {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 1s ease-in-out 1s forwards;
}

.animate-draw-delay-3 {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 1s ease-in-out 1.5s forwards;
}

.animate-draw-delay-4 {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 1s ease-in-out 2s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInDraw {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.06;
    }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.service-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: heroFloat 6s ease-in-out infinite;
}

.service-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(162, 23, 23, 0.2);
}

.service-icon .tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-icon:hover .tooltip {
    opacity: 1;
}

.icon-1 {
    top: 15%;
    left: 12%;
    animation-delay: 0s;
}

.icon-2 {
    top: 65%;
    left: 75%;
    animation-delay: 1.5s;
}

.icon-3 {
    top: 25%;
    left: 78%;
    animation-delay: 3s;
}

.icon-4 {
    top: 75%;
    left: 20%;
    animation-delay: 4.5s;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    margin-top: 2rem;
    background-color: #ffffff80;
    border-radius: 10px;
    margin-bottom: 50px;
    padding: 50px 18px;
}

.hero-content .content-container {
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-family: "Gill-Sans-Medium", sans-serif;
}

.hero-title span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.title-line-1 {
    color: #34495e;
    font-size: 2.2rem;
}

.title-line-2 {
    color: #A21717;
    font-size: 3.5rem;
    margin: 0.2rem 0;
}

.title-line-3 {
    color: #2c3e50;
    font-size: 2.8rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: #A21717;
    color: white;
    border-color: #A21717;
}

.btn-primary:hover {
    background: #8b1414;
    border-color: #8b1414;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(162, 23, 23, 0.3);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #A21717;
    border-color: #A21717;
}

.btn-secondary:hover {
    background: #A21717;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(162, 23, 23, 0.3);
    text-decoration: none;
}

.hero-stats {
    /*position: absolute;*/
    /*bottom: 120px;*/
    /*left: 50%;*/
    transform: translateX(-50%);
    display: flex;
    gap: 2.5rem;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.8rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    max-width: 1200px;
}

.stat-item {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #A21717;
    display: inline-block;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    color: #6c757d;
}

.scroll-text {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-banner {
        min-height: 75vh;
        padding: 1.5rem;
    }

    .hero-content .content-container {
        max-width: 600px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-line-1 {
        font-size: 2rem;
    }

    .title-line-2 {
        font-size: 3rem;
    }

    .title-line-3 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        max-width: 550px;
    }

    .building-wireframe {
        right: 5%;
        opacity: 0.06;
    }

    .building-svg {
        width: 350px;
        height: 280px;
    }

    .hero-stats {
        bottom: 100px;
        gap: 2rem;
        padding: 1.5rem 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 75vh;
        padding: 1rem;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        margin-top: 110px;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-content .content-container {
        max-width: 100%;
        margin: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .title-line-1 {
        font-size: 1.4rem;
    }

    .title-line-2 {
        font-size: 2.2rem;
        margin: 0.1rem 0;
    }

    .title-line-3 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 300px;
    }

    .stat-item {
        min-width: auto;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .building-wireframe {
        right: -20%;
        top: 20%;
        opacity: 0.03;
    }

    .building-svg {
        width: 250px;
        height: 200px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        display: none; /* Hide floating icons on mobile for better UX */
    }

    .scroll-indicator {
        position: relative;
        margin-top: 2rem;
    }

    .scroll-text {
        font-size: 0.8rem;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .hero-banner {
        padding: 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .title-line-1 {
        font-size: 1.2rem;
    }

    .title-line-2 {
        font-size: 1.8rem;
    }

    .title-line-3 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-primary, .btn-secondary {
        max-width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-stats {
        padding: 1rem;
        gap: 0.8rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .building-wireframe {
        display: none; /* Hide wireframe on very small screens */
    }
}

/* Original styles preserved */
#section-0 {
    position: relative;
    z-index: 1000;
    background: white;
}

/* section 0 */
.red-color-header {
    font-size: 25px;
    font-family: "Gill-Sans-Medium";
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.red-color-title {
    font-family: "Gill-Sans-Medium";
    letter-spacing: 5px;
    text-transform: uppercase;
}

@media (max-width: 1025px) {
    .red-color-header {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .red-color-header {
        font-size: 18px;
    }
}

#section-1 {
    position: relative;
    height: 100%;
    /* background-attachment: fixed; */
    /* background-image: url(../images/home/clientBackground.png); */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
}
#section-1 .white-container {
    /* position: relative; */
    /* background: white; */
    /* border-bottom-right-radius: 300px; */
    /* box-shadow: 5px 5px 18px #474040c7; */
}
#section-1-3 {
    background-attachment: fixed;
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/*top left*/
.bg-top-left {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-25%, -50%);
}
.bg-top-left img {
    width: 50%;
}
/*center right*/
.bg-center-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    transform: translate(66%, 20%) rotate(-302deg);
}
.bg-center-right img {
    width: 60%;
}
/*bottom left*/
.bg-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-56%, -11%) rotate(241deg);
}
.bg-bottom-left img {
    width: 50%;
}
/*section 1-1*/
#section-1-1, #section-what-makes-different, #section-1-2, #why-select-us, #faq-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
}
#section-1-1 .title-container {
    border-right: 3px solid black;
    height: 100%;
}
#section-1-1 .title-container h2 {
    letter-spacing: 0.1em;
}
#section-1-1 .content-container,
#section-1-2 .content-container {
    width: 80%;
}
#section-1-1 .content-container p {
    line-height: 150%;
    letter-spacing:0.015px;
}

/*section 1-2*/
#section-1-2 h3 {
    color: #a21717;
}
#section-1-2 .content-container {
    padding-top: 6rem !important;
}
#section-1-2 .content-container h2 {
    font-size: 40px;
    color: #a21717;
}
#section-1-2 .content-container p {
    line-height: 150%;
    letter-spacing: 0.2em;
}

#section-1-2 .model-img {
    margin-left: 7rem;
    width: 120%;
}

/*section 1-3*/
#section-1-3 .title-container {
    color: white;
}
/* flip-box v2 [start] */
.card-lead {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s;
    -webkit-transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 1s;
    -o-transform-style: preserve-3d;
    -o-transition: -o-transform 1s;
    -moz-transform-style: preserve-3d;
    -moz-transition: -moz-transform 1s;
}
@media screen and (max-width: 575px) {
    .card-lead {
        width: 100%;
        height: 22vw;
    }
}
.card-lead figure {
    margin: 0;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}
.card-lead .front {
    border: solid 2px #0f0;
    font-size: 36px;
    border-image-slice: 110;
    border-image-repeat: stretch;
    border-image-width: 500px;
    border-image-source: url(../images/home/glass-card.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.card-lead .back {
    border: solid 2px #0f0;
    font-size: 36px;
    border-image-slice: 110;
    border-image-repeat: stretch;
    border-image-width: 500px;
    border-image-source: url(../images/home/glass-card.png);
    backdrop-filter: blur(42px);
    border-radius: 15px;
    color: white;
    transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}
.card-lead.flipped {
    transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}
/* flip-box v2 [end] */

/*section-2*/
#section-2 .section-container {
    background-image: url(../images/home/OurTeam-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 55%;
}
#section-2 .section-container.main-padding-top {
    padding-top: 8rem;
}
#section-2 h2 {
    font-family: "Gill-Sans-Medium";
    text-transform: uppercase;
    line-height: 200%;
    letter-spacing: 0.1em;
}
#section-2 h2 span {
    font-family: "PlayfairDisplay-BoldItalic";
}

/*section 3*/
#section-3 {
    background: #212028;
    color: white;
}
#section-3 .title-container {
    padding-bottom: 3rem;
}
#section-3 .top-white-border,
#faq-section .top-white-border,
#additional-section .top-white-border {
    border-top: 1px solid white;
}
#section-3 .bottom-white-border,
#faq-section .bottom-white-border,
#additional-section .bottom-white-border {
    border-bottom: 1px solid white;
}
.main-box {
    position: relative;
}
.bar {
    position: absolute;
    width: 50px;
    height: 1.5px;
    background: #fff;
    transition: all 2s linear;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.bar.delay-0 {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}
.bar.delay-1 {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
}
.bar.delay-2 {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}
.bar.delay-3 {
    animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
}
.top {
    top: -0.5px;
    left: -0.5px;
}
.right {
    top: 18px;
    right: -28px;
    transform: rotate(90deg);
}
.bottom {
    bottom: -0.5px;
    left: -0.5px;
}
.left {
    top: 18px;
    left: -28px;
    transform: rotate(90deg);
}
@-webkit-keyframes h-move {
    0% {
        left: 5%;
        width: 100px;
    }
    50% {
        animation-delay: 1s;
        -webkit-animation-delay: 1s;
        width: 40px;
    }
    90% {
        width: 5px;
    }
    94% {
        animation-delay: 0.2s;
        -webkit-animation-delay: 0.2s;
        width: 1px;
    }
    95% {
        width: 0px;
    }
    100% {
        left: 100%;
        width: 0px;
    }
}
@keyframes h-move {
    0% {
        left: 5%;
        width: 20px;
    }
    20% {
        animation-delay: 1s;
        -webkit-animation-delay: 1s;
        width: 70px;
    }
    50% {
        animation-delay: 1s;
        -webkit-animation-delay: 1s;
        width: 40px;
    }
    90% {
        width: 5px;
    }
    94% {
        animation-delay: 0.2s;
        -webkit-animation-delay: 0.2s;
        width: 1px;
    }
    95% {
        width: 0px;
    }
    100% {
        left: 100%;
        width: 0px;
    }
}
.top,
.bottom {
    -webkit-animation-name: h-move;
    animation-name: h-move;
}
@-webkit-keyframes v-move {
    0% {
        top: -5px;
    }
    100% {
        top: 228px;
    }
}
@keyframes v-move {
    0% {
        top: -5px;
    }
    100% {
        top: 228px;
    }
}
.right,
.left {
    -webkit-animation-name: v-move;
    animation-name: v-move;
}

#section-3 .detail-container {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.margin-bottom-100 {
    margin-bottom: 150px;
}

@media (max-width: 1025px) {
    #section-2 .section-container {
        padding-top: 70%;
    }
    #section-2 h2 {
        line-height: 150%;
    }
    #section-1-3 .client-box img {
        padding: 12px 14px;
    }
}

@media (max-width: 767px) {
    #section-1-1 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    #section-1-3 .client-box img {
        padding: 22px 30px;
    }
    #section-1 .white-container {
        border-bottom-right-radius: 150px;
    }
    #section-1-2 .model-img {
        margin-left: -10%;
    }
    #section-1-1 .content-container,
    #section-1-2 .content-container {
        width: 100%;
    }
    #section-1-2 .content-container p {
        text-align: justify;
    }
    #section-2 .section-container.main-padding-top {
        padding-top: 3rem;
    }
    #section-2 .section-container.main-padding-bottom {
        padding-bottom: 3rem;
    }
    #section-2 .main-padding-bottom {
        padding-bottom: 2rem;
    }
}

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

#target-img {
    perspective: 50px;
}

#target-img-child {
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}

#target-img-1 {
    perspective: 50px;
}

#target-img-child-1 {
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}

#target-img-2 {
    perspective: 70px;
}

#target-img-child-2 {
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}
#section-2 .plain-deco-black{
    color:black;
    text-decoration: none;
}
#section-2 a:hover{
    color:black;
    text-decoration: none;
}

/*Section 1-1*/

.video-section .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.video-section video{
  max-width:100%;
  height:auto;
}

.video-section .item{
    opacity:0.4;
    transition:.4s ease all;
    margin:0 20px;
    transform:scale(.8);
}

@media(max-width:1000px){
    .video-section .item{margin:0; transform:scale(.9)}
}

.video-section .active .item{
    opacity:1;
    transform:scale(1);
}
.video-section .item {
    opacity: 0.5;
}
.plyr--video {
    border-radius: 35px;
  }
.plyr__control--overlaid {
    padding: 25px!important;
}
.plyr__control--overlaid, .plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
    background: white!important;
    color:#db0626!important;
}

.plyr__control.plyr__tab-focus {
    box-shadow: 0 0 0 5px #ffffff!important;
}
.client-description {
   width: 50%;
   margin: auto;
}
@media(max-width:1200px){
    .client-description {
       width: 80%;
    }
}
@media(max-width:767px){
    .plyr__control--overlaid {
      padding: 15px!important;
    }
    .why-title {
        height: unset!important;
    }
    .client-description {
       width: 100%;
    }

    #section-2 .plain-deco-black{
        font-size: 20px;
        line-height: 32px;
    }
    #section-2 .main-offset {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
}

.faq-container .faq-description {
    display: none;
}
.faq-container .faq-description.active {
    display: block;
}
.faq-container .animate-arrow.active {
    transform: rotate(90deg);
}

.why-title {
    font-size: 20px;
    font-weight: bold;
}

/* Enhanced Property Developer/Management Cards */
.property-service-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(162, 23, 23, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
}

.property-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A21717 0%, #d63447 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.property-service-card:hover::before {
    transform: scaleX(1);
}

.property-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(162, 23, 23, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
}

.property-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
    transition: border-color 0.3s ease;
}

.property-service-card:hover .property-card-header {
    border-bottom-color: rgba(162, 23, 23, 0.1);
}

.property-card-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    background: linear-gradient(135deg, #A21717 0%, #d63447 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.property-service-card:hover .property-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #d63447 0%, #A21717 100%);
    box-shadow: 0 8px 20px rgba(162, 23, 23, 0.3);
}

.property-card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.property-service-card:hover .property-card-icon svg {
    transform: scale(1.1);
}

.property-card-title {
    color: #A21717;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.property-service-card:hover .property-card-title {
    color: #8b1414;
}

.property-card-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin: 0;
    transition: color 0.3s ease;
}

.property-service-card:hover .property-card-content {
    color: #343a40;
}

/* Responsive adjustments for property cards */
@media (max-width: 768px) {
    .property-card-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .property-card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .property-card-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .property-service-card:hover {
        transform: translateY(-4px);
    }
}
