  body {
            font-family:'Times New Roman', Times, serif;
            background-color: #ffffff;
            overflow-x: hidden;
            font-size: 26px;
        }

  #hedimg img{
            width: 200px;
            height: 125px;
            border-radius: 50%;
            object-fit: cover;
        }
        #expert{
            font-size: larger;
        }

        #review{
            font-size: 20px ;
        }
     

        #about2 img{
            background-color: white;
            padding: 1rem;
            padding-bottom: 4rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-radius: 0.25rem;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            display: inline-block;
            width: 350px;
            height: auto;
        }
        #about2 img:hover {
            transform: rotate(3deg) scale(1.05);
            box-shadow: 0 25px 50px -12px rgba(223, 27, 112, 0.4);
        }
        #about2 img  {
            filter: grayscale(100%);
        }
         #about2 img:hover {
            filter: grayscale(0%);
        }


      /* testimonials */


       /* Custom animation for the infinite scroll */
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-100% - 2rem)); } /* Adjust based on gap */
        }

        .animate-scroll {
            display: flex;
            width: max-content;
            animation: scroll 40s linear infinite;
        }

        .animate-scroll:hover {
            animation-play-state: paused;
        }

        /* Gradient fade effect on the edges */
        .marquee-container::before,
        .marquee-container::after {
            content: "";
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
        }

        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, #f9fafb, transparent);
        }

        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, #f9fafb, transparent);
        }
        
        @media (max-width: 768px) {
            .marquee-container::before,
            .marquee-container::after {
                width: 50px;
            }
        }

        #lmp {
            margin-bottom: 1.5rem;
        }

        #lmp p {
            margin-bottom: 1rem;
            line-height: 1.75;
            font-size: 20px;
        }

    .btn-theme-pink {
            background-color: #df1b70;
            color: white;
            transition: all 0.3s ease-in-out;
        }
        .btn-theme-pink:hover {
            background-color: #c51763;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(223, 27, 112, 0.3);
        }

         /* Property Card Hover Effect */
        .property-card img {
            transition: transform 0.4s ease-in-out;
        }
        .property-card:hover img {
            transform: scale(1.05);
        }

        /* Testimonial card */
        .testimonial-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }

        /* Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* --- Header Scrolled State --- */
        
        #ah:hover h2{
            color: #df1b70;
             transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

             .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: #df1b70;
            margin: 16px auto 0;
        }

        #expert h2{
            font-size: 50px;
        }

        #expert p{
            font-size: 25px;
        }

        #expert button{
            font-size: 20px;
        }

        #expert button:hover{
            font-size: 35px;
            transition: font-size 0.5s ease-in-out;
        }

        #sc{
            font-size: 25px;
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

         #choose{
            width: 800px;
            margin-left: -200px;
        }

        #choose p{
            font-size: 22px;
        }

        #choose h2{
            width: 1000px;
            font-size: 45px;
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        #ch{
            font-size: 30px;

        }


        #ch:hover h2{
            color: #df1b70;
            font-size: 50px;
             transition: opacity 0.7s ease-in, transform 0.6s ease-out;
        }
     .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Brand Color */
        .text-brand { color: #3da1d2; }
        .bg-brand { background-color: #3da1d2; }


        #choose-content{
            padding-right: -1170px;
        }
     

/* -------------------------------------------------------------------------------------- */


@media (max-width: 768px) {

    /* ---------- Global ---------- */
    body {
        font-size: 16px;
        overflow-x: hidden;
    }

    /* ---------- Header Image ---------- */
    #hedimg img {
        width: 120px;
        height: 120px;
    }

    /* ---------- About Section Image ---------- */
    #about2 img {
        width: 100%;
        max-width: 260px;
        padding: 0.75rem;
        padding-bottom: 2.5rem;
    }

    /* ---------- Expert Section ---------- */
    #expert h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    #expert p {
        font-size: 16px;
    }

    #expert button {
        font-size: 16px;
        padding: 10px 18px;
    }

    #expert button:hover {
        font-size: 18px;
    }

    /* ---------- Reviews ---------- */
    #review {
        font-size: 15px;
    }

    /* ---------- Section Text ---------- */
    #sc {
        font-size: 16px;
    }

    /* ---------- Choose Section ---------- */
    #choose {
        width: 100%;
        margin-left: 0;
        padding: 0 16px;
    }

    #choose h2 {
        width: 100%;
        font-size: 26px;
        text-align: center;
    }

    #choose p {
        font-size: 16px;
        text-align: center;
    }

    #choose-content {
        padding-right: 0;
    }

    /* ---------- Choose Cards ---------- */
    #ch {
        font-size: 18px;
        text-align: center;
    }

    #ch:hover h2 {
        font-size: 28px;
    }

    /* ---------- Buttons ---------- */
    .btn-theme-pink {
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }

    /* ---------- Property Cards ---------- */
    .property-card img {
        width: 100%;
        height: auto;
    }

    /* ---------- Testimonials ---------- */
    .testimonial-card {
        margin: 0 12px;
    }

    /* ---------- Marquee ---------- */
    .marquee-container::before,
    .marquee-container::after {
        width: 40px;
    }

    .animate-scroll {
        animation-duration: 60s;
    }

    /* ---------- Paragraph Spacing ---------- */
    #lmp p {
        font-size: 15px;
        line-height: 1.6;
    }

}
/* -------------------------------------------------------------------------------------- */


@media (max-width: 480px) {

    body {
        font-size: 15px;
    }

    #expert h2 {
        font-size: 24px;
    }

    #choose h2 {
        font-size: 22px;
    }

    #ch {
        font-size: 16px;
    }

    #review {
        font-size: 14px;
    }
}




