    :root {
        --idm-primary: #007bff;
        --idm-secondary: #00d4ff;
        --idm-dark: #0a192f;
    }

    /* Section Main Wrapper */
    .real-estate-hero {
        position: relative;
        min-height: 100vh;
        background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 60px 0;
        font-family: 'Poppins', sans-serif;
    }

    /* Unique Bubble Animation */
    .bubble-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .idm-anim-bubble {
        position: absolute;
        list-style: none;
        display: block;
        background: rgba(255, 255, 255, 0.08);
        bottom: -150px;
        animation: bubbleRise 20s linear infinite;
        border-radius: 50%;
    }

    @keyframes bubbleRise {
        0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
        100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
    }

    /* Bubble Variants */
    .idm-anim-bubble:nth-child(1) { left: 10%; width: 50px; height: 50px; animation-duration: 15s; }
    .idm-anim-bubble:nth-child(2) { left: 30%; width: 80px; height: 80px; animation-delay: 2s; }
    .idm-anim-bubble:nth-child(3) { left: 50%; width: 30px; height: 30px; animation-delay: 4s; }
    .idm-anim-bubble:nth-child(4) { left: 75%; width: 100px; height: 100px; animation-duration: 25s; }
    .idm-anim-bubble:nth-child(5) { left: 90%; width: 40px; height: 40px; animation-delay: 1s; }

    /* Content Styling */
    .hero-text-side {
        position: relative;
        z-index: 2;
    }

    .premium-headline {
        font-size: 45px;
        font-weight: 800;
        line-height: 1.1;
        color: #ffffff;
        margin-bottom: 20px;
    }

    .premium-headline span {
        background: linear-gradient(to right, #ffffff, #eb560c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .premium-subheading {
        font-size: 1.15rem;
        color: #fff;
        line-height: 1.6;
        margin-bottom: 35px;
        border-left: 3px solid #eb560c;
        padding-left: 15px;
    }

    /* Buttons */
    .cta-group {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn-idm {
        padding: 14px 30px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.4s ease;
        display: inline-block;
    }

    .btn-outline-idm {
        border: 2px solid white;
        color: #fff;
    }

    .btn-outline-idm:hover {
        background: #eb560c;
        color: #000;
        transform: translateY(-3px);
    }

    .btn-solid-idm {
        background: #eb560c;
        color: #fff;
        border: 2px solid white;

    }

    .btn-solid-idm:hover {
        background: #eb560c;
        transform: translateY(-3px);
        color: white;
    }

    /* Flip Form Styling */
    .form-wrapper {
        perspective: 1200px;
        z-index: 2;
    }

    .glass-form-card {
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 35px;
        transform: rotateY(-90deg);
        opacity: 0;
        animation: flipIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
        animation-delay: 0.3s;
    }

    @keyframes flipIn {
        from { transform: rotateY(-90deg); opacity: 0; }
        to { transform: rotateY(0deg); opacity: 1; }
    }

    .form-title {
        color: #fff;
        font-weight: 700;
        margin-bottom: 25px;
        text-align: center;
        letter-spacing: 1px;
    }

    .idm-input {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #ffff !important;
        border-radius: 10px !important;
        padding: 12px 15px !important;
        margin-bottom: 15px;
    }

    .idm-input:focus {
        border-color: #eb560c !important;
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.2) !important;
    }

    .idm-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    /* Mobile Responsive Fixes */
    @media (max-width: 991px) {
        .real-estate-hero { text-align: center; padding: 40px 0; }
        .premium-subheading { border-left: none; padding-left: 0; }
        .cta-group { justify-content: center; }
    }
    @media (max-width:576px){
        .premium-headline, .real-estate-about-headline{
            font-size: 30px;
        }
    }


    :root {
        --re-orange: rgb(235, 86, 12);
        --re-navy: rgb(27, 41, 70);
        --re-white: #ffffff;
        --re-bg: #f9faff;
    }

    .re-service-box {
        padding: 100px 0;
        background-color: var(--re-bg);
        font-family: 'Poppins', sans-serif;
    }

    .re-service-row {
        margin-bottom: 80px;
        align-items: center;
    }

    .re-service-row:last-child {
        margin-bottom: 0;
    }

    /* Image Styling */
    .re-img-wrapper {
        position: relative;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(27, 41, 70, 0.15);
    }

    .re-img-wrapper img {
        width: 100%;
        transition: transform 0.5s ease;
    }

    .re-img-wrapper:hover img {
        transform: scale(1.05);
    }

    /* Content Styling */
    .re-content-card {
        padding: 20px;
    }

    .re-service-title {
        color: var(--re-navy);
        font-weight: 700;
        font-size: 30px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .re-service-title span {
        color: var(--re-orange);
    }

    .re-service-desc {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    /* Key Features Points */
    .re-feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .re-feature-item {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 15px;
        border-radius: 15px;
        border: 1px solid rgba(27, 41, 70, 0.05);
        transition: 0.3s;
    }

    .re-feature-item:hover {
        border-color: var(--re-orange);
        box-shadow: 0 10px 20px rgba(235, 86, 12, 0.1);
    }

    .re-feature-item i {
        background: var(--re-orange);
        color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .re-feature-item span {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--re-navy);
    }

    /* Floating Badge */
    .re-badge {
        display: inline-block;
        background: rgba(235, 86, 12, 0.1);
        color: var(--re-orange);
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    @media (max-width: 991px) {
        .re-service-title { font-size: 24px; }
        .re-feature-grid { grid-template-columns: 1fr; }
        .re-service-row { text-align: center; }
        .re-img-wrapper { margin-bottom: 40px; }
    }

    :root {
        --re-orange: rgb(235, 86, 12);
        --re-navy: rgb(27, 41, 70);
        --re-light-bg: #fdfdfd;
    }

    .re-why-section {
        padding: 80px 0;
        background-color: var(--re-light-bg);
        font-family: 'Poppins', sans-serif;
    }

    .re-why-title-box {
        text-align: center;
        margin-bottom: 50px;
    }

    .re-why-headline {
        color: var(--re-navy);
        font-weight: 700;
        font-size: 39px;
        position: relative;
        display: inline-block;
    }

    .re-why-headline span {
        color: var(--re-orange);
    }

    /* Card Styling similar to your image */
    .re-why-card {
        background: #fff;
        border: 1.5px solid rgba(27, 41, 70, 0.1);
        border-radius: 25px;
        padding: 30px;
        height: 100%;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }

    .re-why-card:hover {
        transform: translateY(-5px);
        border-color: var(--re-orange);
        box-shadow: 0 10px 25px rgba(235, 86, 12, 0.1);
    }

    /* Gradient Icon Box */
    .re-why-icon-box {
        min-width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--re-navy) 0%, var(--re-orange) 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 25px;
    }

    .re-why-icon-box i {
        color: #fff;
        font-size: 28px;
    }

    .re-why-content h4 {
        color: var(--re-navy);
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 5px;
    }

    .re-why-content p {
        color: #666;
        margin-bottom: 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .re-why-card {
            flex-direction: column;
            text-align: center;
            padding: 25px;
        }
        .re-why-icon-box {
            margin-right: 0;
            margin-bottom: 20px;
        }
        .re-why-headline {
            font-size: 1.8rem;
        }
    }


    :root {
        --re-orange: rgb(235, 86, 12);
        --re-navy: rgb(27, 41, 70);
        --re-bg-light: #f4f7fa;
    }

    .re-contact-section {
        padding: 90px 0;
        background-color: var(--re-bg-light);
        font-family: 'Poppins', sans-serif;
    }

    /* Left Side Content */
    .re-contact-info-box {
        padding-right: 40px;
    }

    .re-contact-info-box h2 {
        font-weight: 700;
        font-size: 39px;
        color: var(--re-navy);
        margin-bottom: 20px;
    }

    .re-contact-info-box h2 span {
        color: var(--re-orange);
    }

    .re-info-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

    .re-info-icon {
        width: 55px;
        height: 55px;
        background: #fff;
        color: var(--re-orange);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-right: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .re-info-text h5 {
        margin: 0;
        color: var(--re-navy);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .re-info-text p {
        margin: 0;
        color: #666;
    }

    /* Right Side Form */
    .re-form-card {
        background: #fff;
        padding: 45px;
        border-radius: 30px;
        box-shadow: 0 25px 50px rgba(27, 41, 70, 0.1);
        border: 1px solid rgba(255,255,255,0.2);
    }

    .re-form-card h3 {
        color: var(--re-navy);
        font-weight: 700;
        margin-bottom: 30px;
    }

    .re-form-group {
        margin-bottom: 20px;
        position: relative;
    }

    .re-form-control {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #e1e1e1;
        border-radius: 12px;
        background: #fdfdfd;
        transition: 0.3s;
        outline: none;
    }

    .re-form-control:focus {
        border-color: var(--re-orange);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(235, 86, 12, 0.1);
    }

    .re-submit-btn {
        width: 100%;
        background: var(--re-orange);
        color: #fff;
        padding: 16px;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .re-submit-btn:hover {
        background: var(--re-navy);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(27, 41, 70, 0.2);
    }

    /* Mobile Responsiveness */
    @media (max-width: 991px) {
        .re-contact-info-box {margin-bottom: 50px; padding-right: 0; }
        .re-form-card { padding: 30px; }
    }
    @media(max-width: 576px){
        .re-contact-info-box h2{
            font-size: 30px;
        }
    }


    :root {
        --re-orange: rgb(235, 86, 12);
        --re-navy: rgb(27, 41, 70);
        --re-light: #f8f9fa;
    }

    .re-process-section {
        padding: 100px 0;
        background-color: var(--re-light);
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .re-process-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .re-process-header h2 {
        font-weight: 700;
        font-size: 39px;
        color: var(--re-navy);
    }

    .re-process-header h2 span {
        color: var(--re-orange);
    }

    /* Process Card Container */
    .re-step-container {
        position: relative;
        z-index: 1;
    }

    /* Process Card */
    .re-step-card {
        background: #ffffff;
        border-radius: 25px;
        padding: 40px 30px;
        text-align: center;
        border: 1px solid rgba(27, 41, 70, 0.05);
        transition: all 0.4s ease;
        height: 100%;
        position: relative;
    }

    .re-step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(27, 41, 70, 0.1);
        border-color: var(--re-orange);
    }

    /* Step Number Badge */
    .re-step-number {
        width: 40px;
        height: 40px;
        background: var(--re-orange);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 5px 15px rgba(235, 86, 12, 0.3);
    }

    /* Icon Styling */
    .re-step-icon {
        font-size: 45px;
        color: var(--re-navy);
        margin-bottom: 20px;
        transition: 0.3s;
    }

    .re-step-card:hover .re-step-icon {
        color: var(--re-orange);
        transform: scale(1.1);
    }

    .re-step-title {
        font-size: 25px;
        font-weight: 600;
        color: var(--re-navy);
        margin-bottom: 12px;
    }

    .re-step-desc {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .re-process-header h2 { font-size: 39px; }
        .re-step-card { margin-bottom: 20px; }
    }
        @media (max-width: 576px) {
        .re-process-header h2 { font-size: 30px; }

    }
    
    :root {
        --re-orange: rgb(235, 86, 12);
        --re-navy: rgb(27, 41, 70);
        --re-white: #ffffff;
    }

    .re-why-choose-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
        font-family: 'Poppins', sans-serif;
    }

    .re-why-title-area {
        text-align: center;
        margin-bottom: 60px;
    }

    .re-why-title-area h2 {
        font-weight: 700;
        font-size: 39px;
        color: var(--re-navy);
    }

    .re-why-title-area h2 span {
        color: var(--re-orange);
    }

    /* Inline Card Design */
    .re-why-inline-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        padding: 25px;
        height: 100%;
        display: flex; /* Flexbox for Inline layout */
        align-items: center;
        transition: all 0.4s ease;
        box-shadow: 0 10px 25px rgba(27, 41, 70, 0.05);
    }

    .re-why-inline-card:hover {
        transform: translateX(10px); /* Slide effect instead of lifting */
        background: var(--re-white);
        border-color: var(--re-orange);
        box-shadow: 0 15px 35px rgba(235, 86, 12, 0.1);
    }

    /* Smaller Inline Icon Wrapper */
    .re-why-icon-wrap {
        min-width: 60px;
        height: 60px;
        background: var(--re-navy);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px; /* Space between icon and text */
        transition: 0.4s;
    }

    .re-why-inline-card:hover .re-why-icon-wrap {
        background: var(--re-orange);
        border-radius: 50%;
    }

    .re-why-icon-wrap i {
        font-size: 24px;
        color: var(--re-white);
    }

    /* Content Styling */
    .re-why-text-area h4 {
        font-size: 24px;
        font-weight: 600;
        color: var(--re-navy);
        margin-bottom: 5px;
    }

    .re-why-text-area p {
        color: #5a6b8a;
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

    @media (max-width: 768px) {
        .re-why-title-area h2 { font-size: 30px; }
        .re-why-inline-card { padding: 20px; }
        .re-why-icon-wrap { min-width: 50px; height: 50px; }
        .re-why-icon-wrap i { font-size: 20px; }
    }

    :root {
        --re-orange: rgb(235, 86, 12);
        --re-navy: rgb(27, 41, 70);
        --re-white: #ffffff;
    }

    .re-cta-banner {
        position: relative;
        padding: 100px 0;
        /* Replace URL with a high-quality building or office image */
        background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&q=80&w=1920');
        background-size: cover;
        background-position: center;
        background-attachment: fixed; /* Parallax effect */
        text-align: center;
        color: var(--re-white);
        font-family: 'Poppins', sans-serif;
    }

    /* Dark Gradient Overlay like your image */
    .re-cta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(27, 41, 70, 0.9), rgba(27, 41, 70, 0.85));
        z-index: 1;
    }

    .re-cta-container {
        position: relative;
        z-index: 2;
        max-width: 850px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .re-cta-title {
        font-size: 39px;
        font-weight: 700;
        margin-bottom: 20px;
        color: white;
        line-height: 1.2;
    }

    .re-cta-desc {
        font-size: 1.2rem;
        opacity: 0.9;
        color: white;
        margin-bottom: 40px;
        font-weight: 300;
        line-height: 1.6;
    }

    /* Button Container */
    .re-cta-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Solid Orange Button */
    .btn-orange-cta {
        background-color: var(--re-orange);
        color: #fff;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        border: 2px solid var(--re-orange);
    }

    .btn-orange-cta:hover {
        background-color: transparent;
        color: var(--re-orange);
        transform: translateY(-3px);
    }

    /* White Outline/Glass Button */
    .btn-white-cta {
        background-color: #fff;
        color: var(--re-navy);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        border: 2px solid #fff;
    }

    .btn-white-cta:hover {
        background-color: transparent;
        color: #fff;
        transform: translateY(-3px);
    }

    @media (max-width: 768px) {
        .re-cta-title { font-size: 30px; }
        .re-cta-desc { font-size: 1rem; }
        .re-cta-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
        .btn-orange-cta, .btn-white-cta { width: 100%; justify-content: center; }
    }


    :root {
        --re-blue: #007bff;
        --re-dark: #0a192f;
        --re-text: #555555;
    }

    /* Unique section wrapper */
    .real-estate-about-section {
        padding: 100px 0;
        background-color: #ffffff;
        font-family: 'Poppins', sans-serif; /* Modern Font */
    }

    /* Right side image container unique styling */
    .real-estate-image-container {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .real-estate-image-container:hover {
        transform: scale(1.02);
    }

    .real-estate-about-img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Content styling on the left */
    .real-estate-about-headline {
        font-size: 39px;
        font-weight: 700;
        color: var(--re-dark);
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .real-estate-about-headline span {
        color: #eb560c;
    }

    .real-estate-about-description {
        font-size: 1.1rem;
        color: var(--re-text);
        line-height: 1.8;
        margin-bottom: 0;
    }

    .real-estate-about-description strong {
        color: var(--re-dark);
        font-weight: 600;
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 991px) {
        .real-estate-about-section { padding: 60px 0; }
        .real-estate-about-headline { font-size: 32px; text-align: center; }

        .real-estate-image-container { margin-top: 40px; }
    }




