 /* =====================================================
           RESET
        ===================================================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            width: 100%;
        }

        body {
            overflow-x: hidden;
            background: #fff;
        }


        /* =====================================================
           HEADER
        ===================================================== */

        .main-header {
            width: 100%;
            height: 108px;

            background: #ffffff;

            position: relative;

            display: block;
        }


        /* =====================================================
           HEADER INNER
        ===================================================== */

        .header-inner {
            width: 100%;
            height: 108px;

            position: relative;
        }


        /* =====================================================
           HAMBURGER MENU
        ===================================================== */

        .menu-btn {
            position: absolute;

            left: 86px;
            top: 50%;

            transform: translateY(-50%);

            width: 21px;
            height: 19px;

            padding: 0;
            margin: 0;

            border: 0;
            outline: none;

            background: transparent;

            display: flex;
            flex-direction: column;
            justify-content: space-between;

            cursor: pointer;

            z-index: 20;
        }

        .menu-btn span {
            display: block;

            width: 21px;
            height: 1px;

            background: #555;

            flex-shrink: 0;
        }


        /* =====================================================
           LOGO
        ===================================================== */

        .logo-link {
            position: absolute;

            /*
               Screenshot ke according logo position
            */
            left: 50%;
            top: 50%;

            transform: translate(-50%, -50%);

            display: block;

            width: 290px;
            height: auto;

            line-height: 0;

            z-index: 10;
        }

        .logo {
            display: block;

            width: 290px;
            height: auto;

            max-width: none;

            object-fit: contain;
        }


        /* =====================================================
           RIGHT SIDE
        ===================================================== */

        .right-area {
            position: absolute;

            right: 90px;
            top: 50%;

            transform: translateY(-50%);

            height: 30px;

            display: flex;
            align-items: center;

            z-index: 20;
        }


        /* =====================================================
           SOCIAL ICONS
        ===================================================== */

        .social-icons {
            display: flex;
            align-items: center;

            gap: 16px;

            margin-right: 195px;
        }

        .social-icons a {
            width: 15px;
            height: 18px;

            display: flex;
            align-items: center;
            justify-content: center;

            color: #111;

            text-decoration: none;

            font-size: 14px;

            line-height: 1;

            transition: opacity 0.2s ease;
        }

        .social-icons a:hover {
            color: #111;
            opacity: 0.6;
        }


        /* =====================================================
           CONTACT
        ===================================================== */

        .contact-link {
            display: block;

            color: #111;

            text-decoration: none;

            font-family: Arial, Helvetica, sans-serif;

            font-size: 15px;
            font-weight: 400;

            letter-spacing: 2.5px;

            line-height: 1;

            white-space: nowrap;
        }

        .contact-link:hover {
            color: #111;
        }


        /* =====================================================
           OFFCANVAS
        ===================================================== */

        .offcanvas {
            width: 300px !important;
        }

        .offcanvas-title {
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 2px;
        }

        .offcanvas-body ul {
            margin: 0;
            padding: 0;
        }

        .offcanvas-body ul li {
            margin-bottom: 25px;
        }

        .offcanvas-body ul li a {
            color: #111;
            text-decoration: none;

            font-size: 14px;
            letter-spacing: 1.5px;
        }


        /* =====================================================
           LARGE SCREEN
        ===================================================== */

        @media (min-width: 1201px) {

            .main-header,
            .header-inner {
                height: 108px;
            }

            .menu-btn {
                left: 86px;
            }

            .logo-link {
                width: 290px;
            }

            .logo {
                width: 290px;
            }

            .right-area {
                right: 90px;
            }

            .social-icons {
                margin-right: 195px;
            }
        }


        /* =====================================================
           LAPTOP
        ===================================================== */

        @media (max-width: 1200px) {

            .menu-btn {
                left: 50px;
            }

            .logo-link {
                width: 250px;
            }

            .logo {
                width: 250px;
            }

            .right-area {
                right: 50px;
            }

            .social-icons {
                margin-right: 120px;
            }
        }


        /* =====================================================
           TABLET
        ===================================================== */

        @media (max-width: 991px) {

            .main-header,
            .header-inner {
                height: 95px;
            }

            .menu-btn {
                left: 35px;
            }

            .logo-link {
                width: 220px;
            }

            .logo {
                width: 220px;
            }

            .right-area {
                right: 35px;
            }

            .social-icons {
                gap: 13px;
                margin-right: 70px;
            }

            .contact-link {
                font-size: 13px;
                letter-spacing: 2px;
            }
        }


        /* =====================================================
           MOBILE
        ===================================================== */

        @media (max-width: 767px) {

            .main-header,
            .header-inner {
                height: 82px;
            }

            .menu-btn {
                left: 25px;

                width: 21px;
                height: 18px;
            }

            .menu-btn span {
                width: 21px;
            }


            /* CENTER LOGO */

            .logo-link {
                left: 50%;
                top: 50%;

                transform: translate(-50%, -50%);

                width: 190px;
            }

            .logo {
                width: 190px;
            }


            /* RIGHT */

            .right-area {
                right: 25px;
            }

            .social-icons {
                display: none;
            }

            .contact-link {
                font-size: 12px;
                letter-spacing: 1.5px;
            }
        }


        /* =====================================================
           SMALL MOBILE
        ===================================================== */

        @media (max-width: 480px) {

            .main-header,
            .header-inner {
                height: 75px;
            }

            .menu-btn {
                left: 20px;

                width: 20px;
                height: 16px;
            }

            .menu-btn span {
                width: 20px;
            }


            .logo-link {
                width: 165px;
            }

            .logo {
                width: 165px;
            }


            .right-area {
                right: 20px;
            }

            .contact-link {
                font-size: 10px;
                letter-spacing: 1.2px;
            }
        }


        /* =====================================================
           SLIDER SECTION
        ====================================================== */

        .hero-slider-section {
            width: 100%;
            padding: 12px 0 0 0;
        }


        /* =====================================================
           SLIDER CONTAINER
        ====================================================== */

        .hero-slider {
            width: 100%;
            position: relative;

            overflow: hidden;

            border-radius: 18px;

            background: #ffffff;
        }


        /* =====================================================
           CAROUSEL
        ====================================================== */

        .carousel-inner {
            width: 100%;
            border-radius: 18px;
        }


        /* =====================================================
           SLIDE
        ====================================================== */

        .carousel-item {
            width: 100%;
            position: relative;

            transition: transform 0.7s ease-in-out;
        }


        /* =====================================================
           SLIDER IMAGE
        ====================================================== */

        .slider-image {
            display: block;

            width: 100%;

            height: 450px;

            object-fit: cover;

            object-position: center;

            border-radius: 18px;
        }


        /* =====================================================
           PREVIOUS / NEXT BUTTON
        ====================================================== */

        .carousel-control-prev,
        .carousel-control-next {

            width: 70px;

            opacity: 1;

            top: 50%;

            bottom: auto;

            transform: translateY(-50%);

            z-index: 10;
        }


        /* =====================================================
           LEFT ARROW POSITION
        ====================================================== */

        .carousel-control-prev {
            left: 0;
        }


        /* =====================================================
           RIGHT ARROW POSITION
        ====================================================== */

        .carousel-control-next {
            right: 0;
        }


        /* =====================================================
           ARROW ICON
        ====================================================== */

        .carousel-control-prev-icon,
        .carousel-control-next-icon {

            width: 35px;
            height: 35px;

            background-image: none;

            display: flex;

            align-items: center;
            justify-content: center;
        }


        .carousel-control-prev-icon::before {

            content: "\f053";

            font-family: "Font Awesome 6 Free";

            font-weight: 900;

            color: #ffffff;

            font-size: 27px;

            text-shadow:
                0 1px 3px rgba(0,0,0,0.35);
        }


        .carousel-control-next-icon::before {

            content: "\f054";

            font-family: "Font Awesome 6 Free";

            font-weight: 900;

            color: #ffffff;

            font-size: 27px;

            text-shadow:
                0 1px 3px rgba(0,0,0,0.35);
        }


        /* =====================================================
           INDICATORS
        ====================================================== */

        .carousel-indicators {

            margin-bottom: 15px;

            z-index: 15;
        }

        .carousel-indicators [data-bs-target] {

            width: 8px;
            height: 8px;

            border-radius: 50%;

            border: 0;

            margin-left: 5px;
            margin-right: 5px;

            opacity: 0.7;
        }

        .carousel-indicators .active {
            opacity: 1;
        }


        /* =====================================================
           DESKTOP
        ====================================================== */

        @media (min-width: 1200px) {

            .hero-slider-section {
                padding-top: 12px;
            }

            .slider-image {
                height: 450px;
            }

            .carousel-control-prev {
                left: 2px;
            }

            .carousel-control-next {
                right: 2px;
            }
        }


        /* =====================================================
           LAPTOP
        ====================================================== */

        @media (max-width: 1199px) {

            .slider-image {
                height: 400px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 60px;
            }
        }


        /* =====================================================
           TABLET
        ====================================================== */

        @media (max-width: 991px) {

            .hero-slider-section {
                padding-top: 10px;
            }

            .hero-slider {
                border-radius: 15px;
            }

            .carousel-inner {
                border-radius: 15px;
            }

            .slider-image {
                height: 350px;
                border-radius: 15px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 55px;
            }

            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 30px;
                height: 30px;
            }

            .carousel-control-prev-icon::before,
            .carousel-control-next-icon::before {
                font-size: 22px;
            }
        }


        /* =====================================================
           MOBILE
        ====================================================== */

        @media (max-width: 767px) {

            .hero-slider-section {
                padding: 8px 0 0 0;
            }

            .hero-slider {
                border-radius: 12px;
            }

            .carousel-inner {
                border-radius: 12px;
            }

            .slider-image {
                width: 100%;
                height: 250px;

                border-radius: 12px;

                object-fit: cover;
                object-position: center;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 45px;
            }

            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 25px;
                height: 25px;
            }

            .carousel-control-prev-icon::before,
            .carousel-control-next-icon::before {
                font-size: 19px;
            }

            .carousel-indicators {
                margin-bottom: 8px;
            }

            .carousel-indicators [data-bs-target] {
                width: 6px;
                height: 6px;

                margin-left: 3px;
                margin-right: 3px;
            }
        }


        /* =====================================================
           SMALL MOBILE
        ====================================================== */

        @media (max-width: 480px) {

            .slider-image {
                height: 200px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 38px;
            }

            .carousel-control-prev-icon::before,
            .carousel-control-next-icon::before {
                font-size: 17px;
            }
        }






        /* =========================================================
   ESBEE REALTY INTRO SECTION
========================================================= */

.realty-intro-section {
    width: 100%;
    background: #ffffff;
    padding: 20px 0 80px;
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.realty-intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
    padding: 0 20px;
}


/* =========================================================
   HEADING
========================================================= */

.realty-intro-content h2 {
    margin: 0 0 22px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    font-weight: 300;
    line-height: 1.4;

    letter-spacing: 0.5px;

    color: #6c6b88;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.realty-intro-content p {
    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;

    color: #555577;

    max-width: 660px;
}


/* =========================================================
   IMAGE ROW
========================================================= */

.realty-image-row {
    width: calc(100% - 90px);
    max-width: 1260px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 48px;
}


/* =========================================================
   IMAGE CARD
========================================================= */

.realty-image-card {
    display: block;

    width: 100%;
    height: 410px;

    overflow: hidden;

    border-radius: 8px;

    text-decoration: none;

    position: relative;

    /* Important */
    background: #f5f5f5;
}


/* =========================================================
   IMAGE
========================================================= */

.realty-image-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
       Initial image slightly zoomed
       Then JavaScript adds .zoom-in
    */
    transform: scale(1.15);

    /*
       Smooth animation
    */
    transition:
        transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}


/* =========================================================
   SCROLL ZOOM EFFECT
========================================================= */

.realty-image-card.zoom-in img {
    transform: scale(1);
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.realty-image-card:hover img {
    transform: scale(1.06);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .realty-intro-section {
        padding: 30px 0 60px;
    }


    .realty-intro-content {
        margin-bottom: 50px;
    }


    .realty-intro-content h2 {
        font-size: 21px;
    }


    .realty-image-row {
        width: calc(100% - 50px);

        gap: 25px;
    }


    .realty-image-card {
        height: 350px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .realty-intro-section {
        padding: 30px 0 50px;
    }


    .realty-intro-content {
        max-width: 100%;

        margin-bottom: 40px;

        padding: 0 25px;
    }


    .realty-intro-content h2 {
        font-size: 20px;

        line-height: 1.4;

        margin-bottom: 18px;
    }


    .realty-intro-content p {
        font-size: 12px;

        line-height: 1.7;
    }


    .realty-image-row {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .realty-image-card {
        height: 400px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .realty-intro-content h2 {
        font-size: 19px;
    }


    .realty-image-card {
        height: 350px;
    }

}


/* =========================================================
   REDUCE MOTION
   Accessibility
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .realty-image-card img {
        transform: scale(1) !important;

        transition: none;
    }

}

       /* =========================================================
   TRIMURTI REALTY OVERVIEW
========================================================= */

.realty-overview-section {
    width: 100%;

    background: #f8f7f3;

    padding: 85px 20px 90px;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND PATTERN
========================================================= */

.realty-overview-section::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.08;

    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            #aaa 8px,
            #aaa 9px
        );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.realty-overview-container {
    position: relative;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================================
   TITLE
========================================================= */

.realty-overview-title {
    text-align: center;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;

    font-weight: 400;

    letter-spacing: 0.5px;

    color: #28272a;

    margin-bottom: 58px;
}


/* =========================================================
   STATS ROW
========================================================= */

.realty-overview-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    align-items: start;

    justify-content: center;

    gap: 30px;
}


/* =========================================================
   STAT
========================================================= */

.realty-stat {
    text-align: center;

    min-width: 0;
}


/* =========================================================
   NUMBER
========================================================= */

.realty-stat-number {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 52px;

    font-weight: 400;

    line-height: 1;

    color: #171719;

    margin-bottom: 12px;
}


/* =========================================================
   LABEL
========================================================= */

.realty-stat-label {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.4;

    color: #1f91a4;

    letter-spacing: 0.2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .realty-overview-section {
        padding: 70px 25px 75px;
    }

    .realty-overview-title {
        font-size: 22px;

        margin-bottom: 50px;
    }

    .realty-overview-stats {
        gap: 20px;
    }

    .realty-stat-number {
        font-size: 42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .realty-overview-section {
        padding: 60px 20px 65px;
    }

    .realty-overview-title {
        font-size: 20px;

        margin-bottom: 40px;
    }

    .realty-overview-stats {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 40px;

        column-gap: 15px;
    }

    .realty-stat-number {
        font-size: 38px;
    }

    .realty-stat-label {
        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .realty-overview-section {
        padding: 50px 15px 55px;
    }

    .realty-overview-title {
        font-size: 19px;

        margin-bottom: 35px;
    }

    .realty-stat-number {
        font-size: 34px;
    }

    .realty-stat-label {
        font-size: 10px;
    }

}


/* =========================================================
   TRIMURTI REALTY OVERVIEW
========================================================= */

.realty-overview-section {
    width: 100%;
    background: #f8f7f3;
    padding: 85px 20px 90px;
    position: relative;
    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND PATTERN
========================================================= */

.realty-overview-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;

    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            #aaa 8px,
            #aaa 9px
        );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.realty-overview-container {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================================================
   TITLE
========================================================= */

.realty-overview-title {
    text-align: center;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;
    font-weight: 400;

    letter-spacing: 0.5px;

    color: #28272a;

    margin-bottom: 58px;
}


/* =========================================================
   STATS ROW
========================================================= */

.realty-overview-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    align-items: start;
    justify-content: center;

    gap: 30px;
}


/* =========================================================
   STAT
========================================================= */

.realty-stat {
    text-align: center;
    min-width: 0;
}


/* =========================================================
   NUMBER
========================================================= */

.realty-stat-number {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 52px;
    font-weight: 400;

    line-height: 1;

    color: #171719;

    margin-bottom: 12px;

    white-space: nowrap;
}


/* =========================================================
   LABEL
========================================================= */

.realty-stat-label {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.4;

    color: #1f91a4;

    letter-spacing: 0.2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .realty-overview-section {
        padding: 70px 25px 75px;
    }

    .realty-overview-title {
        font-size: 22px;
        margin-bottom: 50px;
    }

    .realty-overview-stats {
        gap: 20px;
    }

    .realty-stat-number {
        font-size: 42px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .realty-overview-section {
        padding: 60px 20px 65px;
    }

    .realty-overview-title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .realty-overview-stats {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 40px;
        column-gap: 15px;
    }

    .realty-stat-number {
        font-size: 38px;
    }

    .realty-stat-label {
        font-size: 11px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .realty-overview-section {
        padding: 50px 15px 55px;
    }

    .realty-overview-title {
        font-size: 19px;
        margin-bottom: 35px;
    }

    .realty-stat-number {
        font-size: 34px;
    }

    .realty-stat-label {
        font-size: 10px;
    }
}



/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-choose-us {

    position: relative;

    width: 100%;

    overflow: hidden;

    min-height: 550px;

    background: #111;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.why-choose-us .image-layer {

    position: absolute;

    top: 0;
    left: 0;

    width: 50%;
    height: 100%;

    background-image: url("images/background/1.jpg");

    background-size: cover;
    background-position: center;

    /*
       Initial animation position
       Image starts outside left
    */

    transform: translateX(-100%);

    opacity: 0;

    transition:
        transform 1.2s cubic-bezier(.22,.61,.36,1),
        opacity 1s ease;

    z-index: 1;
}


/* =========================================================
   IMAGE DARK OVERLAY
========================================================= */

.why-choose-us .image-layer::after {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.18);
}


/* =========================================================
   IMAGE ANIMATION ACTIVE
========================================================= */

.why-choose-us.active .image-layer {

    transform: translateX(0);

    opacity: 1;
}


/* =========================================================
   TEXT AREA
========================================================= */

.why-choose-us .title-column {

    position: relative;

    z-index: 3;
}


.why-text {

    padding: 120px 50px 100px;

    /*
       Text starts from right
    */

    transform: translateX(120px);

    opacity: 0;

    transition:
        transform 1.1s cubic-bezier(.22,.61,.36,1) .25s,
        opacity 1s ease .25s;
}


/* =========================================================
   TEXT ANIMATION ACTIVE
========================================================= */

.why-choose-us.active .why-text {

    transform: translateX(0);

    opacity: 1;
}


/* =========================================================
   FEATURE COLUMN
========================================================= */

.why-choose-us .feature-column {

    position: relative;

    z-index: 4;
}


.why-card {

    padding: 100px 50px;

    /*
       Card starts from left
    */

    transform: translateX(-120px);

    opacity: 0;

    transition:
        transform 1.1s cubic-bezier(.22,.61,.36,1) .15s,
        opacity 1s ease .15s;
}


/* =========================================================
   CARD ANIMATION ACTIVE
========================================================= */

.why-choose-us.active .why-card {

    transform: translateX(0);

    opacity: 1;
}


/* =========================================================
   FEATURE BOX
========================================================= */

.features-box {

    background: rgba(255,255,255,0.96);

    padding: 35px 40px;

    max-width: 480px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.18);

    border-radius: 2px;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.feature-list {

    list-style: none;

    padding: 0;

    margin: 0;
}


.feature-list li {

    position: relative;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    color: #292929;

    padding: 18px 0 18px 30px;

    border-bottom: 1px solid #e8e8e8;
}


.feature-list li:last-child {

    border-bottom: none;
}


/* =========================================================
   FEATURE ICON
========================================================= */

/* .feature-list li::before {

    content: "✓";

    position: absolute;

    left: 0;
    top: 17px;

    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 11px;

    color: #b58b4c;

    border: 1px solid #b58b4c;

    border-radius: 50%;
} */


/* =========================================================
   TITLE
========================================================= */

.why-choose-us .sec-title .title {

    display: block;

    margin-bottom: 12px;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: #b58b4c;
}


.why-choose-us .sec-title h2 {

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 44px;

    line-height: 1.15;

    text-transform: uppercase;

    color: #fff;

    max-width: 500px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .why-choose-us {

        min-height: auto;

        padding: 0 0 70px;
    }


    .why-choose-us .image-layer {

        position: relative;

        width: 100%;

        height: 420px;

        transform: translateX(-100%);
    }


    .why-text {

        padding: 70px 25px 30px;

        transform: translateX(80px);
    }


    .why-card {

        padding: 20px 25px 0;

        transform: translateX(-80px);
    }


    .features-box {

        max-width: 100%;
    }


    .why-choose-us .sec-title h2 {

        font-size: 38px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .why-choose-us .image-layer {

        height: 300px;
    }


    .why-text {

        padding: 50px 20px 25px;
    }


    .why-card {

        padding: 10px 20px 0;
    }


    .why-choose-us .sec-title h2 {

        font-size: 30px;
    }


    .features-box {

        padding: 25px 25px;
    }


    .feature-list li {

        font-size: 14px;

        padding: 15px 0 15px 28px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .why-choose-us .image-layer {

        height: 250px;
    }


    .why-text {

        padding: 40px 15px 20px;
    }


    .why-card {

        padding: 10px 15px 0;
    }


    .why-choose-us .sec-title h2 {

        font-size: 27px;
    }


    .features-box {

        padding: 20px;
    }
}



/* =========================================================
   PROJECT WIP SECTION
========================================================= */

.project-wip-section {

    position: relative;

    min-height: 650px;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #151515;

    color: #fff;
}


/* =========================================================
   BACKGROUND
========================================================= */

.project-wip-bg {

    position: absolute;

    inset: -5%;

    background:
        linear-gradient(
            rgba(15,15,15,.72),
            rgba(15,15,15,.82)
        ),
        url("assets/image/projectbg.png");

    background-size: cover;

    background-position: center;

    transform: scale(1.08);

    animation: wipBackgroundZoom 12s ease-out forwards;

    z-index: 1;
}


@keyframes wipBackgroundZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}


/* =========================================================
   GOLD OVERLAY
========================================================= */

.project-wip-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        radial-gradient(
            circle at center,
            rgba(181,139,76,.12),
            transparent 55%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.project-wip-container {

    position: relative;

    z-index: 3;

    width: min(850px, calc(100% - 40px));

    margin: auto;

    text-align: center;
}


/* =========================================================
   LOGO
========================================================= */

.project-wip-logo {

    margin-bottom: 30px;
}


.project-wip-logo img {

    width: 150px;

    max-height: 100px;

    object-fit: contain;

    margin: auto;
}


/* =========================================================
   GOLD LINE
========================================================= */

.project-wip-line {

    width: 80px;

    height: 1px;

    background: #b58b4c;

    margin: 0 auto 25px;
}


/* =========================================================
   SMALL TITLE
========================================================= */

.project-wip-small {

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 400;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: #1f91a4;

    margin-bottom: 20px;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.project-wip-title {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 6vw, 76px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: .5px;

    text-transform: uppercase;

    margin: 0 auto 25px;

    max-width: 800px;
}


.project-wip-title span {

    color: #1f91a4;

    font-style: italic;

    text-transform: none;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.project-wip-description {

    max-width: 620px;

    margin: 0 auto;

    color: rgba(255,255,255,.72);

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   STATUS
========================================================= */

.project-wip-status {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    padding: 10px 18px;

    border: 1px solid
        rgba(181,139,76,.35);

    color: rgba(255,255,255,.75);

    font-size: 10px;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.status-dot {

    width: 7px;

    height: 7px;

    background: #b58b4c;

    border-radius: 50%;

    animation: statusPulse 1.8s infinite;
}


@keyframes statusPulse {

    0%,
    100% {

        opacity: .4;

        transform: scale(.8);
    }

    50% {

        opacity: 1;

        transform: scale(1.2);
    }
}


/* =========================================================
   BUTTON
========================================================= */

.project-wip-button {

    display: table;

    margin: 32px auto 0;

    padding: 15px 32px;

    border: 1px solid #1f91a4;

    color: #fff;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;
    text-decoration: none;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.project-wip-button:hover {

    background: #1f91a4;

    color: #171719;

    transform: translateY(-3px);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.project-wip-scroll {

    position: absolute;

    left: 50%;

    bottom: -100px;

    transform: translateX(-50%);
}


.project-wip-scroll span {

    display: block;

    width: 1px;

    height: 45px;

    background: #1f91a4;

    animation:
        wipScroll 1.6s ease-in-out infinite;
}


@keyframes wipScroll {

    0%,
    100% {
        transform: scaleY(.3);

        transform-origin: top;
    }

    50% {
        transform: scaleY(1);

        transform-origin: top;
    }
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.project-wip-section
.reveal-up {

    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.22,.61,.36,1);
}


.project-wip-section
.reveal-scale {

    opacity: 0;

    transform: scale(.75);

    transition:
        opacity 1s ease,
        transform 1.2s cubic-bezier(.22,.61,.36,1);
}


/* =========================================================
   ACTIVE
========================================================= */

.project-wip-section.active
.reveal-up {

    opacity: 1;

    transform: translateY(0);
}


.project-wip-section.active
.reveal-scale {

    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   STAGGER
========================================================= */

.project-wip-section.active
.project-wip-line {

    transition-delay: .15s;
}


.project-wip-section.active
.project-wip-small {

    transition-delay: .25s;
}


.project-wip-section.active
.project-wip-title {

    transition-delay: .35s;
}


.project-wip-section.active
.project-wip-description {

    transition-delay: .5s;
}


.project-wip-section.active
.project-wip-status {

    transition-delay: .65s;
}


.project-wip-section.active
.project-wip-button {

    transition-delay: .8s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .project-wip-section {

        min-height: 600px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .project-wip-section {

        min-height: 580px;

        padding: 70px 0;
    }


    .project-wip-container {

        width:
            calc(100% - 30px);
    }


    .project-wip-logo img {

        width: 125px;
    }


    .project-wip-small {

        font-size: 9px;

        letter-spacing: 2.5px;
    }


    .project-wip-title {

        font-size: 38px;

        line-height: 1.08;
    }


    .project-wip-description {

        font-size: 13px;

        line-height: 1.7;
    }


    .project-wip-status {

        font-size: 8px;

        letter-spacing: 1px;

        padding: 9px 12px;
    }


    .project-wip-scroll {

        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .project-wip-section {

        min-height: 550px;
    }


    .project-wip-title {

        font-size: 32px;
    }


    .project-wip-description {

        font-size: 12px;
    }

}


/* =========================================
   CUSTOM CALL TO ACTION
========================================= */

.custom-cta {
    position: relative;
    width: 100%;
    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Background Image */
.cta-bg {
    position: absolute;
    inset: 0;

    background-image: url("assets/image/pattern-2.jpg");
    background-size: cover;
    background-position: center center;

    transform: scale(1.08);
    transition: transform 2s ease;
}

/* Dark Transparent Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.62);

    z-index: 1;
}

/* Content */
.custom-cta .auto-container {
    position: relative;
    z-index: 2;

    width: 100%;
}

.cta-content {
    text-align: center;
    color: #fff;

    max-width: 850px;
    margin: 0 auto;

    padding: 80px 20px;
}

/* Small Heading */
.cta-subtitle {
    display: block;

    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: #1f91a4;

    margin-bottom: 20px;

    opacity: 0;
    transform: translateY(30px);

    animation: ctaFadeUp 1s ease forwards;
}

/* Main Heading */
.cta-content h2 {
    margin: 0;

    font-family: Georgia, serif;

    font-size: 52px;
    line-height: 1.2;

    font-weight: 500;

    letter-spacing: 1px;

    opacity: 0;
    transform: translateY(40px);

    animation: ctaFadeUp 1s ease 0.2s forwards;
}

/* Gold Line */
.cta-line {
    width: 70px;
    height: 2px;

    background: #c9a66b;

    margin: 28px auto;

    transform: scaleX(0);

    animation: ctaLine 0.8s ease 0.6s forwards;
}

/* Phone Numbers */
.cta-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-bottom: 35px;

    opacity: 0;
    transform: translateY(30px);

    animation: ctaFadeUp 1s ease 0.8s forwards;
}

.cta-numbers a {
    color: #fff;

    font-size: 23px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.3s ease;
}

.cta-numbers a:hover {
    color: #1f91a4;
}

.cta-numbers span {
    color: #1f91a4;
    font-size: 18px;
}

/* Button */
.cta-button {
    opacity: 0;
    transform: translateY(30px);

    animation: ctaFadeUp 1s ease 1s forwards;
}

.cta-button .theme-btn {
    display: inline-block;

    border: 1px solid #1f91a4;

    background: #1f91a4;

    color: #fff;

    padding: 15px 38px;

    text-decoration: none;

    transition: all 0.4s ease;
}

.cta-button .theme-btn:hover {
    background: transparent;
    color: #fff;

    border-color: #fff;
}


/* =========================================
   BACKGROUND ZOOM ANIMATION
========================================= */

.custom-cta:hover .cta-bg {
    transform: scale(1.13);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes ctaFadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes ctaLine {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .custom-cta {
        min-height: 550px;
    }

    .cta-content {
        padding: 60px 15px;
    }

    .cta-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .cta-content h2 {
        font-size: 34px;
        line-height: 1.25;
    }

    .cta-numbers {
        flex-direction: column;
        gap: 8px;
    }

    .cta-numbers span {
        display: none;
    }

    .cta-numbers a {
        font-size: 20px;
    }

}


/* Projects gallery */

.project-gallery {
    position: relative;
    padding: 100px 0;
    background: #f8f7f4;
    overflow: hidden;
}


/* =========================
   HEADING
========================= */

.gallery-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.gallery-subtitle {
    display: block;

    font-size: 13px;
    letter-spacing: 4px;

    color: #1f91a4;

    margin-bottom: 15px;
}

.gallery-heading h2 {
    margin: 0;

    font-family: Georgia, serif;

    font-size: 45px;
    line-height: 1.2;

    font-weight: 500;

    color: #222;
}

.gallery-heading h2 span {
    color: #1f91a4;
}

.gallery-line {
    width: 65px;
    height: 2px;

    background: #c9a66b;

    margin: 25px auto;
}

.gallery-heading p {
    color: #777;

    font-size: 15px;
    line-height: 1.8;

    margin: 0;
}


/* =========================
   GALLERY GRID
========================= */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 260px;

    gap: 18px;
}


/* Gallery Item */

.gallery-item {
    position: relative;

    overflow: hidden;

    cursor: pointer;

    background: #ddd;
}


/* Large Image */

.gallery-large {
    grid-row: span 2;
}


/* Image */

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


/* Overlay */

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;

    transition: all 0.4s ease;
}


/* Plus */

.gallery-overlay span {
    width: 55px;
    height: 55px;

    border: 1px solid #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 30px;
    font-weight: 300;

    transform: scale(0.5);

    transition: all 0.4s ease;
}


/* Hover */

.gallery-item:hover img {
    transform: scale(1.1);

    filter: brightness(0.8);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: scale(1);
}


/* =========================
   SCROLL ANIMATION
========================= */

.reveal-gallery {
    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


/* Active */

.reveal-gallery.active {
    opacity: 1;

    transform: translateY(0);
}


/* Different delays */

.gallery-item:nth-child(1) {
    transition-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    transition-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    transition-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    transition-delay: 0.4s;
}

.gallery-item:nth-child(5) {
    transition-delay: 0.5s;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);

        grid-auto-rows: 230px;
    }

}


@media (max-width: 767px) {

    .project-gallery {
        padding: 70px 0;
    }

    .gallery-heading {
        margin-bottom: 35px;
    }

    .gallery-heading h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 250px;

        gap: 12px;
    }

    .gallery-large {
        grid-row: span 1;
    }

}


/* footer */

/* =====================================================
   TRIMURTI REALTY FOOTER
===================================================== */



.tr-footer {
    width: 100%;
    background: #111111;
    color: #ffffff;
}


/* =====================================================
   CUSTOM CONTAINER
   IMPORTANT: Existing .auto-container ko use nahi kiya
===================================================== */

.tr-footer-container {
    width: calc(100% - 60px);
    max-width: 1170px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 15px;
    padding-right: 15px;

    box-sizing: border-box;
}


/* =====================================================
   MAIN FOOTER
===================================================== */
.tr-footer-address {
    margin: 0;
    padding: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
    line-height: 1.7;
    font-weight: 400;
}

.tr-footer-main {
    position: relative;

    padding: 75px 0 65px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(181, 139, 76, 0.04),
            transparent 45%
        ),
        #111111;
}


/* Background decoration */

.tr-footer-main::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    top: -220px;

    border: 1px solid rgba(181, 139, 76, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.tr-footer-main::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -130px;
    top: -130px;

    border: 1px solid rgba(181, 139, 76, 0.06);

    border-radius: 50%;

    pointer-events: none;
}


/* =====================================================
   GRID
===================================================== */

.tr-footer-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1.35fr;

    gap: 55px;

    align-items: start;
}


/* =====================================================
   LOGO
===================================================== */

.tr-footer-logo {
    display: inline-block;

    margin-bottom: 25px;
}

.tr-footer-logo img {
    display: block;

    width: auto;

    max-width: 180px;

    max-height: 75px;

    object-fit: contain;

    transition: all 0.4s ease;
}

.tr-footer-logo:hover img {
    transform: translateY(-3px);
}


/* =====================================================
   ABOUT
===================================================== */

.tr-footer-about p {
    max-width: 350px;

    margin: 0 0 25px;

    color: #999999;

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   ENQUIRE
===================================================== */

.tr-footer-enquire {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #1f91a4;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 12px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.tr-footer-enquire span {
    font-size: 20px;

    transition: transform 0.3s ease;
}

.tr-footer-enquire:hover {
    color: #ffffff;
}

.tr-footer-enquire:hover span {
    transform: translateX(6px);
}


/* =====================================================
   COLUMN TITLE
===================================================== */

.tr-footer-column h3 {
    position: relative;

    margin: 5px 0 28px;

    padding-bottom: 13px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    font-weight: 500;
}

.tr-footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background: #b58b4c;

    transition: width 0.3s ease;
}

.tr-footer-column:hover h3::after {
    width: 60px;
}


/* =====================================================
   LINKS
===================================================== */

.tr-footer-column ul {
    list-style: none;

    margin: 0;

    padding: 0;
}

.tr-footer-column ul li {
    margin-bottom: 12px;
}

.tr-footer-column ul li a {
    position: relative;

    color: #999999;

    font-size: 14px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.tr-footer-column ul li a::before {
    content: "→";

    position: absolute;

    left: -18px;

    color: #1f91a4;

    opacity: 0;

    transition: all 0.3s ease;
}

.tr-footer-column ul li a:hover {
    color: #1f91a4;

    padding-left: 5px;
}

.tr-footer-column ul li a:hover::before {
    left: -12px;

    opacity: 1;
}


/* =====================================================
   CONTACT
===================================================== */

.tr-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 22px;
}

.tr-contact-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(181, 139, 76, 0.5);

    color: #1f91a4;

    font-size: 14px;

    transition: all 0.3s ease;
}

.tr-contact-item:hover .tr-contact-icon {
    background: #1f91a4;

    color: #111111;

    transform: translateY(-2px);
}

.tr-contact-item small {
    display: block;

    margin-bottom: 4px;

    color: #666666;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.tr-contact-item a {
    display: block;

    color: #dddddd;

    font-size: 14px;

    line-height: 1.8;

    text-decoration: none;

    transition: color 0.3s ease;
}

.tr-contact-item a:hover {
    color: #1f91a4;
}


/* =====================================================
   BOTTOM
===================================================== */

.tr-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 20px 0;
}

.tr-footer-bottom-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.tr-footer-bottom p {
    margin: 0;

    color: #666666;

    font-size: 12px;
}

.tr-footer-legal {
    display: flex;

    align-items: center;

    gap: 12px;
}

.tr-footer-legal a {
    color: #666666;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.tr-footer-legal a:hover {
    color: #1f91a4;
}

.tr-footer-legal span {
    color: #333333;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .tr-footer-grid {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 45px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tr-footer-container {
        width: calc(100% - 30px);

        padding-left: 10px;
        padding-right: 10px;
    }


    .tr-footer-main {
        padding: 60px 0 30px;
    }


    .tr-footer-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .tr-footer-about,
    .tr-footer-column {
        margin-bottom: 40px;
    }


    .tr-footer-logo img {
        max-width: 160px;

        max-height: 65px;
    }


    .tr-footer-bottom-inner {
        flex-direction: column;

        text-align: center;

        gap: 10px;
    }


    .tr-footer-legal {
        justify-content: center;

        flex-wrap: wrap;
    }

}



/* About us */

/* =====================================================
   ABOUT HERO BANNER
===================================================== */

.about-hero {
    position: relative;

    width: 100%;
    height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.about-hero-bg {
    position: absolute;
    inset: 0;

    background-image: url("assets/image/hero.png");

    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.08);

    animation: aboutHeroZoom 8s ease-out forwards;
}

/* =====================================================
   DARK TRANSPARENT OVERLAY
===================================================== */

.about-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.70)
        );

    z-index: 1;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.about-hero-content {
    position: relative;

    z-index: 2;

    text-align: center;

    color: #ffffff;

    padding: 20px;
}


/* =====================================================
   SMALL TEXT
===================================================== */

.about-hero-small {
    display: block;

    color: #1f91a4;

    font-size: 13px;

    letter-spacing: 5px;

    text-transform: uppercase;

    opacity: 0;

    transform: translateY(25px);

    animation:
        aboutFadeUp 1s ease 0.2s forwards;
}


/* =====================================================
   GOLD LINE
===================================================== */

.about-hero-line {
    width: 0;

    height: 2px;

    background: #b58b4c;

    margin: 20px auto;

    animation:
        aboutLine 0.8s ease 0.7s forwards;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.about-hero-content h1 {
    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 64px;

    font-weight: 500;

    line-height: 1.15;

    letter-spacing: 3px;

    opacity: 0;

    transform: translateY(45px);

    animation:
        aboutFadeUp 1s ease 0.9s forwards;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.about-breadcrumb {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    font-size: 11px;

    letter-spacing: 2px;

    opacity: 0;

    transform: translateY(25px);

    animation:
        aboutFadeUp 1s ease 1.2s forwards;
}

.about-breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
    color: #1f91a4;
}

.about-breadcrumb span {
    color: #1f91a4;
}


/* =====================================================
   BACKGROUND ZOOM
===================================================== */

@keyframes aboutHeroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}


/* =====================================================
   CONTENT ANIMATION
===================================================== */

@keyframes aboutFadeUp {

    from {
        opacity: 0;

        transform: translateY(45px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =====================================================
   LINE ANIMATION
===================================================== */

@keyframes aboutLine {

    from {
        width: 0;
    }

    to {
        width: 65px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .about-hero {
        height: 450px;
    }

    .about-hero-content h1 {
        font-size: 52px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .about-hero {
        height: 400px;
    }

    .about-hero-small {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .about-hero-content h1 {
        font-size: 40px;

        letter-spacing: 2px;
    }

    .about-breadcrumb {
        margin-top: 20px;

        font-size: 9px;

        gap: 8px;
    }

}



/* =========================================================
   TRIMURTI REALTY - ABOUT SECTION
   ========================================================= */

.tr-about-section {
    position: relative;
    width: 100%;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}

.tr-about-container {
    width: calc(100% - 60px);
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.tr-about-row {
    display: flex;
    align-items: center;
    gap: 80px;
}


/* =========================================================
   IMAGE AREA
   ========================================================= */

.tr-about-image-col {
    width: 50%;
    position: relative;
}

.tr-about-image-wrap {
    position: relative;
    width: 100%;
    padding-right: 25px;
    padding-bottom: 25px;
}

.tr-about-image {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    z-index: 2;
    background: #eee;
}

.tr-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}


/* Image hover */

.tr-about-image-wrap:hover .tr-about-image img {
    transform: scale(1.07);
}


/* Decorative Border */

.tr-about-image-border {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 88%;
    height: 88%;
    border: 1px solid #1f91a4;
    z-index: 1;
}


/* =========================================================
   LOGO / BRAND BOX
   ========================================================= */

.tr-about-experience {
    position: absolute;
    left: -30px;
    bottom: 45px;
    width: 145px;
    height: 145px;
    background: #171717;
    z-index: 5;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}

.tr-about-image-wrap:hover .tr-about-experience {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.tr-experience-number {
    color: #1f91a4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 3px;
}

.tr-experience-text {
    margin-top: 10px;
    color: #ffffff;
    font-size: 9px;
    line-height: 1.6;
    letter-spacing: 3px;
    text-align: center;
}


/* =========================================================
   CONTENT AREA
   ========================================================= */

.tr-about-content-col {
    width: 50%;
}

.tr-about-content {
    max-width: 530px;
}


/* Subtitle */

.tr-about-subtitle {
    display: block;
    color: #1f91a4;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}


/* Gold line */

.tr-about-line {
    width: 60px;
    height: 2px;
    background: #c6a16a;
    margin: 18px 0 25px;
}


/* Heading */

.tr-about-content h2 {
    margin: 0 0 25px;
    color: #1a1a1a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tr-about-content h2 span {
    display: block;
    color: #1f91a4;
    font-style: italic;
    font-weight: 400;
}


/* Paragraph */

.tr-about-content p {
    margin: 0 0 17px;
    color: #777;
    font-size: 15px;
    line-height: 1.9;
}

.tr-about-content .tr-about-intro {
    color: #444;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 18px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.tr-about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e7e7e7;
}

.tr-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.tr-feature-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    border: 1px solid #c6a16a;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1f91a4;
    font-size: 11px;
    letter-spacing: 1px;
}

.tr-about-feature h4 {
    margin: 0 0 5px;
    color: #222;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 500;
}

.tr-about-feature p {
    margin: 0;
    color: #888;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   BUTTON
   ========================================================= */

.tr-about-button-wrap {
    margin-top: 35px;
}

.tr-about-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 25px;

    min-width: 175px;
    padding: 15px 20px;

    background: #171717;
    color: #ffffff;

    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;

    overflow: hidden;

    transition:
        color .4s ease,
        transform .4s ease;
}

.tr-about-button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background: #1f91a4;

    transition: width .4s ease;
}

.tr-about-button span,
.tr-about-button i {
    position: relative;
    z-index: 2;
}

.tr-about-button i {
    font-size: 20px;
    font-style: normal;
    line-height: 1;

    transition: transform .3s ease;
}

.tr-about-button:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
}

.tr-about-button:hover::before {
    width: 100%;
}

.tr-about-button:hover i {
    transform: translateX(6px);
}


/* =========================================================
   SCROLL REVEAL ANIMATION
   ========================================================= */

.tr-reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.2,.7,.2,1);
}

.tr-reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition:
        opacity 1s ease .15s,
        transform 1s cubic-bezier(.2,.7,.2,1);
}

.tr-about-section.tr-active .tr-reveal-left,
.tr-about-section.tr-active .tr-reveal-right {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   CONTENT STAGGER ANIMATION
   ========================================================= */

.tr-about-content .tr-about-subtitle,
.tr-about-content .tr-about-line,
.tr-about-content h2,
.tr-about-content > p,
.tr-about-features,
.tr-about-button-wrap {
    opacity: 0;
    transform: translateY(25px);
}

.tr-about-section.tr-active .tr-about-subtitle {
    animation: trAboutUp .8s ease .2s forwards;
}

.tr-about-section.tr-active .tr-about-line {
    animation: trAboutLine .7s ease .4s forwards;
}

.tr-about-section.tr-active h2 {
    animation: trAboutUp .9s ease .5s forwards;
}

.tr-about-section.tr-active .tr-about-intro {
    animation: trAboutUp .8s ease .7s forwards;
}

.tr-about-section.tr-active .tr-about-content > p:not(.tr-about-intro) {
    animation: trAboutUp .8s ease .85s forwards;
}

.tr-about-section.tr-active .tr-about-features {
    animation: trAboutUp .8s ease 1s forwards;
}

.tr-about-section.tr-active .tr-about-button-wrap {
    animation: trAboutUp .8s ease 1.15s forwards;
}


/* =========================================================
   IMAGE BORDER ANIMATION
   ========================================================= */

.tr-about-image-border {
    opacity: 0;
    transform: translate(20px, 20px);
    transition:
        opacity 1s ease 1s,
        transform 1s ease 1s;
}

.tr-about-section.tr-active .tr-about-image-border {
    opacity: 1;
    transform: translate(0, 0);
}


/* =========================================================
   KEYFRAMES
   ========================================================= */

@keyframes trAboutUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes trAboutLine {

    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 60px;
        opacity: 1;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .tr-about-section {
        padding: 80px 0;
    }

    .tr-about-row {
        gap: 45px;
    }

    .tr-about-image-col,
    .tr-about-content-col {
        width: 50%;
    }

    .tr-about-image {
        height: 460px;
    }

    .tr-about-content h2 {
        font-size: 38px;
    }

    .tr-about-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .tr-about-experience {
        left: -15px;
        width: 120px;
        height: 120px;
    }

    .tr-experience-number {
        font-size: 30px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .tr-about-section {
        padding: 65px 0;
    }

    .tr-about-container {
        width: calc(100% - 30px);
        padding: 0 10px;
    }

    .tr-about-row {
        display: block;
    }

    .tr-about-image-col,
    .tr-about-content-col {
        width: 100%;
    }


    /* Image */

    .tr-about-image-wrap {
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .tr-about-image {
        height: 400px;
    }

    .tr-about-experience {
        left: 10px;
        bottom: 25px;
        width: 105px;
        height: 105px;
    }

    .tr-experience-number {
        font-size: 27px;
    }

    .tr-experience-text {
        font-size: 7px;
        letter-spacing: 2px;
    }


    /* Content */

    .tr-about-content-col {
        margin-top: 65px;
    }

    .tr-about-content {
        max-width: 100%;
    }

    .tr-about-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .tr-about-content h2 {
        font-size: 34px;
        line-height: 1.25;
    }

    .tr-about-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .tr-about-content .tr-about-intro {
        font-size: 15px;
    }


    /* Features */

    .tr-about-features {
        display: block;
    }

    .tr-about-feature {
        margin-bottom: 20px;
    }

    .tr-about-feature:last-child {
        margin-bottom: 0;
    }


    /* Animation */

    .tr-reveal-left {
        transform: translateY(50px);
    }

    .tr-reveal-right {
        transform: translateY(50px);
    }

    .tr-about-section.tr-active .tr-reveal-left,
    .tr-about-section.tr-active .tr-reveal-right {
        transform: translateY(0);
    }

}

.tr-about-experience {
    position: absolute;
    left: -30px;
    bottom: 45px;

    width: 145px;
    height: 145px;

    background: #171717;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}

.tr-about-experience img {
    width: 100%;
    max-width: 128;
    height: auto;
    display: block;
    object-fit: contain;
}

.tr-about-image-wrap:hover .tr-about-experience {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {

    .tr-about-experience {
        left: 10px;
        bottom: 25px;
        width: 105px;
        height: 105px;
        padding: 15px;
    }

    .tr-about-experience img {
        max-width: 80px;
    }

}


/* =========================================================
   TRIMURTI REALTY - VISION & MISSION
   ========================================================= */

.tr-vm-section {
    position: relative;
    width: 100%;
    padding: 110px 0;
    overflow: hidden;
    background: #151515;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.tr-vm-bg {
    position: absolute;
    inset: 0;

    background-image: url("assets/image/vision&mission.png");
    background-size: cover;
    background-position: center;

    transform: scale(1.05);

    transition: transform 1.5s ease;
}

.tr-vm-section.tr-vm-active .tr-vm-bg {
    transform: scale(1);
}


.tr-vm-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.90),
            rgba(0, 0, 0, 0.76)
        );

    z-index: 1;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.tr-vm-container {
    position: relative;
    z-index: 2;

    width: calc(100% - 60px);
    max-width: 1170px;

    margin: 0 auto;

    padding: 0 15px;
    box-sizing: border-box;
}


/* =========================================================
   HEADING
   ========================================================= */

.tr-vm-heading {
    max-width: 650px;
    margin: 0 auto 65px;

    text-align: center;
}

.tr-vm-subtitle {
    display: block;

    color: #1f91a4;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 5px;
    text-transform: uppercase;
}


.tr-vm-heading-line {
    width: 0;
    height: 2px;

    margin: 18px auto 25px;

    background: #c6a16a;

    transition: width .8s ease .35s;
}


.tr-vm-section.tr-vm-active .tr-vm-heading-line {
    width: 60px;
}


.tr-vm-heading h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;
    font-weight: 500;

    line-height: 1.2;
}


.tr-vm-heading h2 span {
    color: #1f91a4;
    font-style: italic;
}


.tr-vm-heading p {
    max-width: 550px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   GRID
   ========================================================= */

.tr-vm-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;
}


/* =========================================================
   CARD
   ========================================================= */

.tr-vm-card {
    position: relative;

    min-height: 360px;

    padding: 45px;

    box-sizing: border-box;

    border: 1px solid rgba(198, 161, 106, 0.45);

    background: rgba(15, 15, 15, 0.68);

    backdrop-filter: blur(5px);

    overflow: hidden;

    transition:
        transform .5s ease,
        background .5s ease,
        border-color .5s ease;
}


.tr-vm-card:hover {
    transform: translateY(-8px);

    background: rgba(20, 20, 20, 0.90);

    border-color: #1f91a4;
}


/* =========================================================
   CARD NUMBER
   ========================================================= */

.tr-vm-card-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: rgba(198, 161, 106, 0.25);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 58px;
    line-height: 1;
}


/* =========================================================
   ICON
   ========================================================= */

.tr-vm-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #c6a16a;

    margin-bottom: 30px;
}


.tr-vm-icon span {
    color: #1f91a4;

    font-size: 22px;

    transition: transform .4s ease;
}


.tr-vm-card:hover .tr-vm-icon span {
    transform: rotate(180deg);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.tr-vm-card-label {
    display: block;

    margin-bottom: 12px;

    color: #1f91a4;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
}


.tr-vm-card h3 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 31px;
    font-weight: 500;

    line-height: 1.25;
}


.tr-vm-card h3 span {
    display: block;

    color: #1f91a4;

    font-style: italic;
    font-weight: 400;
}


.tr-vm-card p {
    max-width: 450px;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CARD BOTTOM LINE
   ========================================================= */

.tr-vm-card-line {
    width: 45px;
    height: 1px;

    margin-top: 30px;

    background: #1f91a4;

    transition: width .5s ease;
}


.tr-vm-card:hover .tr-vm-card-line {
    width: 90px;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.tr-vm-reveal {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.2, .7, .2, 1);
}


.tr-vm-section.tr-vm-active .tr-vm-reveal {
    opacity: 1;
    transform: translateY(0);
}


.tr-vm-card-left,
.tr-vm-card-right {
    opacity: 0;

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.2, .7, .2, 1);
}


.tr-vm-card-left {
    transform: translateX(-70px);
}


.tr-vm-card-right {
    transform: translateX(70px);
}


.tr-vm-section.tr-vm-active .tr-vm-card-left,
.tr-vm-section.tr-vm-active .tr-vm-card-right {
    opacity: 1;
    transform: translateX(0);
}


.tr-vm-section.tr-vm-active .tr-vm-card-right {
    transition-delay: .18s;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .tr-vm-section {
        padding: 85px 0;
    }

    .tr-vm-heading h2 {
        font-size: 42px;
    }

    .tr-vm-card {
        padding: 35px;
        min-height: 350px;
    }

    .tr-vm-card h3 {
        font-size: 27px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .tr-vm-section {
        padding: 70px 0;
    }

    .tr-vm-container {
        width: calc(100% - 30px);
        padding: 0 10px;
    }


    .tr-vm-heading {
        margin-bottom: 45px;
    }


    .tr-vm-subtitle {
        font-size: 9px;
        letter-spacing: 3px;
    }


    .tr-vm-heading h2 {
        font-size: 35px;
    }


    .tr-vm-heading p {
        font-size: 13px;
    }


    .tr-vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .tr-vm-card {
        min-height: auto;
        padding: 30px;
    }


    .tr-vm-card h3 {
        font-size: 26px;
    }


    .tr-vm-card p {
        font-size: 13px;
    }


    .tr-vm-card-left,
    .tr-vm-card-right {
        transform: translateY(50px);
    }


    .tr-vm-section.tr-vm-active .tr-vm-card-left,
    .tr-vm-section.tr-vm-active .tr-vm-card-right {
        transform: translateY(0);
    }

}


/* =========================================================
   TRIMURTI REALTY - PHILOSOPHY SECTION
   ========================================================= */

.tr-philosophy-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    overflow: hidden;
    background: #151515;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.tr-philosophy-bg {
    position: absolute;
    inset: 0;

    background-image: url("assets/image/phil.png");
    background-size: cover;
    background-position: center center;

    transform: scale(1.08);

    transition: transform 1.8s cubic-bezier(.2,.7,.2,1);
}

.tr-philosophy-section.philosophy-active
.tr-philosophy-bg {
    transform: scale(1);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.tr-philosophy-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.94),
            rgba(8, 8, 8, 0.82),
            rgba(8, 8, 8, 0.92)
        );

    z-index: 1;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.tr-philosophy-container {
    position: relative;
    z-index: 2;

    width: calc(100% - 60px);
    max-width: 1170px;

    margin: 0 auto;

    padding: 0 15px;

    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.tr-philosophy-content {
    max-width: 850px;
    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   SUBTITLE
   ========================================================= */

.tr-philosophy-subtitle {
    display: block;

    color: #1f91a4;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 5px;

    text-transform: uppercase;
}


/* =========================================================
   GOLD LINE
   ========================================================= */

.tr-philosophy-line {
    width: 0;
    height: 2px;

    margin: 20px auto 30px;

    background: #c6a16a;

    transition: width .8s ease .4s;
}

.philosophy-active .tr-philosophy-line {
    width: 65px;
}


/* =========================================================
   TITLE
   ========================================================= */

.tr-philosophy-title {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 52px;
    font-weight: 400;

    line-height: 1.25;

    letter-spacing: -0.5px;
}

.tr-philosophy-title span {
    display: block;

    color: #1f91a4;

    font-style: italic;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.tr-philosophy-description {
    max-width: 680px;

    margin: 25px auto 0;

    color: rgba(255,255,255,.70);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   QUOTE
   ========================================================= */

.tr-philosophy-quote {
    position: relative;

    max-width: 650px;

    margin: 45px auto 0;

    padding: 25px 60px;

    border-top: 1px solid rgba(198,161,106,.35);
    border-bottom: 1px solid rgba(198,161,106,.35);
}

.tr-philosophy-quote p {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    line-height: 1.7;

    font-style: italic;
}


.tr-quote-mark {
    position: absolute;

    left: 15px;
    top: 10px;

    color: #1f91a4;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 55px;

    line-height: 1;
}


.tr-quote-end {
    left: auto;
    right: 15px;
    top: auto;
    bottom: -12px;
}


/* =========================================================
   PRINCIPLES
   ========================================================= */

.tr-philosophy-principles {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;

    margin-top: 75px;

    border-top: 1px solid rgba(255,255,255,.16);
}


/* =========================================================
   PRINCIPLE ITEM
   ========================================================= */

.tr-philosophy-item {
    position: relative;

    min-height: 190px;

    padding: 35px 35px 20px;

    border-right: 1px solid rgba(255,255,255,.16);

    box-sizing: border-box;
}

.tr-philosophy-item:last-child {
    border-right: none;
}


/* =========================================================
   NUMBER
   ========================================================= */

.tr-philosophy-number {
    display: block;

    margin-bottom: 20px;

    color: rgba(198,161,106,.65);

    font-size: 11px;

    letter-spacing: 2px;
}


/* =========================================================
   ITEM HEADING
   ========================================================= */

.tr-philosophy-item h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;

    font-weight: 400;
}


/* =========================================================
   ITEM DESCRIPTION
   ========================================================= */

.tr-philosophy-item p {
    margin: 0;

    color: rgba(255,255,255,.60);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   HOVER
   ========================================================= */

.tr-philosophy-item {
    transition:
        background .4s ease,
        transform .4s ease;
}

.tr-philosophy-item:hover {
    background: rgba(198,161,106,.06);

    transform: translateY(-5px);
}

.tr-philosophy-item:hover .tr-philosophy-number {
    color: #1f91a4;
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal-philosophy {
    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.2,.7,.2,1);
}


.philosophy-active .reveal-philosophy {
    opacity: 1;

    transform: translateY(0);
}


.reveal-philosophy-item {
    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2,.7,.2,1);
}


.philosophy-active
.reveal-philosophy-item {
    opacity: 1;

    transform: translateY(0);
}


.philosophy-active
.reveal-philosophy-item:nth-child(1) {
    transition-delay: .15s;
}


.philosophy-active
.reveal-philosophy-item:nth-child(2) {
    transition-delay: .3s;
}


.philosophy-active
.reveal-philosophy-item:nth-child(3) {
    transition-delay: .45s;
}


/* =========================================================
   CONTENT STAGGER
   ========================================================= */

.philosophy-active
.tr-philosophy-description {
    transition-delay: .2s;
}


.philosophy-active
.tr-philosophy-quote {
    transition-delay: .35s;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .tr-philosophy-section {
        padding: 90px 0;
    }

    .tr-philosophy-title {
        font-size: 43px;
    }

    .tr-philosophy-principles {
        margin-top: 60px;
    }

    .tr-philosophy-item {
        padding: 30px 25px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .tr-philosophy-section {
        padding: 70px 0;
    }


    .tr-philosophy-container {
        width: calc(100% - 30px);
        padding: 0 10px;
    }


    .tr-philosophy-subtitle {
        font-size: 9px;
        letter-spacing: 3px;
    }


    .tr-philosophy-title {
        font-size: 34px;
        line-height: 1.3;
    }


    .tr-philosophy-description {
        font-size: 13px;
        line-height: 1.8;
    }


    .tr-philosophy-quote {
        margin-top: 35px;
        padding: 22px 35px;
    }


    .tr-philosophy-quote p {
        font-size: 16px;
        line-height: 1.7;
    }


    .tr-quote-mark {
        font-size: 40px;
        left: 5px;
    }


    .tr-quote-end {
        left: auto;
        right: 5px;
    }


    .tr-philosophy-principles {
        display: block;

        margin-top: 50px;
    }


    .tr-philosophy-item {
        min-height: auto;

        padding: 30px 5px;

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,.16);
    }


    .tr-philosophy-item:last-child {
        border-bottom: none;
    }


    .tr-philosophy-item h3 {
        font-size: 23px;
    }


    .tr-philosophy-item p {
        font-size: 13px;
    }

}


/* =========================================================
   TRIMURTI REALTY - CONTACT SECTION
   ========================================================= */

.tr-contact-section {
    position: relative;
    width: 100%;

    padding: 110px 0;

    background: #f5f3ef;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.tr-contact-container {
    width: calc(100% - 60px);
    max-width: 1170px;

    margin: 0 auto;

    padding: 0 15px;

    box-sizing: border-box;
}


/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.tr-contact-wrapper {
    display: grid;

    grid-template-columns: 43% 57%;

    min-height: 650px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   LEFT CONTACT INFO
   ========================================================= */

.tr-contact-info {
    position: relative;

    background: #171717;

    overflow: hidden;
}


/* Background pattern */

.tr-contact-pattern {
    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    bottom: -170px;

    border: 1px solid rgba(198, 161, 106, 0.22);

    border-radius: 50%;
}


.tr-contact-pattern::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: 60px;
    left: 60px;

    border: 1px solid rgba(198, 161, 106, 0.15);

    border-radius: 50%;
}


.tr-contact-pattern::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: 120px;
    left: 120px;

    border: 1px solid rgba(198, 161, 106, 0.12);

    border-radius: 50%;
}


/* =========================================================
   INFO CONTENT
   ========================================================= */

.tr-contact-info-content {
    position: relative;

    z-index: 2;

    padding: 65px 50px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.tr-contact-eyebrow {
    display: block;

    color: #1f91a4;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.tr-contact-line {
    width: 55px;
    height: 2px;

    margin: 18px 0 25px;

    background: #1f91a4;

    transform-origin: left;

    transform: scaleX(0);

    transition: transform .8s ease .3s;
}


/* =========================================================
   LEFT HEADING
   ========================================================= */

.tr-contact-info h2 {
    margin: 0 0 22px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 43px;

    font-weight: 400;

    line-height: 1.25;
}


.tr-contact-info h2 span {
    display: block;

    color: #1f91a4;

    font-style: italic;
}


.tr-contact-info > div > p,
.tr-contact-info-content > p {
    max-width: 380px;

    margin: 0 0 42px;

    color: rgba(255,255,255,.62);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.tr-contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;
}


.tr-contact-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(198,161,106,.55);

    display: flex;

    align-items: center;
    justify-content: center;

    transition:
        background .4s ease,
        transform .4s ease;
}


.tr-contact-detail:hover .tr-contact-icon {
    background: #1f91a4;

    transform: translateY(-4px);
}


.tr-contact-icon span {
    color: #1f91a4;

    font-size: 9px;

    letter-spacing: 1px;

    transition: color .3s ease;
}


.tr-contact-detail:hover
.tr-contact-icon span {
    color: #171717;
}


/* =========================================================
   DETAIL TEXT
   ========================================================= */

.tr-contact-detail-text {
    display: flex;

    flex-direction: column;
}


.tr-contact-detail-text small {
    margin-bottom: 6px;

    color: rgba(255,255,255,.38);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;
}


.tr-contact-detail-text a {
    color: #ffffff;

    font-size: 13px;

    line-height: 1.8;

    text-decoration: none;

    transition: color .3s ease;
}


.tr-contact-detail-text a:hover {
    color: #1f91a4;
}


.tr-contact-detail-text p {
    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   RIGHT FORM AREA
   ========================================================= */

.tr-contact-form-area {
    position: relative;

    background: #ffffff;
}


.tr-contact-form-inner {
    padding: 65px 65px;
}


/* =========================================================
   FORM HEADING
   ========================================================= */

.tr-form-label {
    display: block;

    color: #1f91a4;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;
}


.tr-contact-form-inner h3 {
    margin: 13px 0 12px;

    color: #1b1b1b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 38px;

    font-weight: 400;

    line-height: 1.3;
}


.tr-contact-form-inner h3 span {
    color: #1f91a4;

    font-style: italic;
}


.tr-form-intro {
    margin: 0 0 35px;

    color: #888;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FORM
   ========================================================= */

.tr-contact-form {
    width: 100%;
}


.tr-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}


.tr-form-group {
    margin-bottom: 22px;
}


.tr-form-group label {
    display: block;

    margin-bottom: 9px;

    color: #555;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;
}


.tr-form-group input,
.tr-form-group textarea {
    width: 100%;

    border: none;

    border-bottom: 1px solid #d8d8d8;

    background: transparent;

    padding: 11px 0;

    outline: none;

    color: #222;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color .35s ease,
        padding .35s ease;
}


.tr-form-group textarea {
    min-height: 90px;

    resize: vertical;
}


.tr-form-group input::placeholder,
.tr-form-group textarea::placeholder {
    color: #aaa;
}


.tr-form-group input:focus,
.tr-form-group textarea:focus {
    border-color: #1f91a4;

    padding-left: 5px;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.tr-contact-submit {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    min-width: 185px;

    margin-top: 5px;

    padding: 16px 20px;

    border: none;

    background: #171717;

    color: #ffffff;

    cursor: pointer;

    overflow: hidden;

    font-family: inherit;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    transition:
        transform .35s ease;
}


.tr-contact-submit::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background: #1f91a4;

    transition: width .45s ease;
}


.tr-contact-submit span,
.tr-contact-submit i {
    position: relative;

    z-index: 2;
}


.tr-contact-submit i {
    font-size: 19px;

    font-style: normal;

    transition:
        transform .3s ease;
}


.tr-contact-submit:hover {
    transform: translateY(-3px);
}


.tr-contact-submit:hover::before {
    width: 100%;
}


.tr-contact-submit:hover i {
    transform: translateX(7px);
}


/* =========================================================
   SCROLL ANIMATION
   ========================================================= */

.tr-contact-info,
.tr-contact-form-area {
    opacity: 0;

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.2,.7,.2,1);
}


.tr-contact-info {
    transform: translateX(-70px);
}


.tr-contact-form-area {
    transform: translateX(70px);
}


.tr-contact-section.tr-contact-active
.tr-contact-info,
.tr-contact-section.tr-contact-active
.tr-contact-form-area {
    opacity: 1;

    transform: translateX(0);
}


.tr-contact-section.tr-contact-active
.tr-contact-form-area {
    transition-delay: .15s;
}


.tr-contact-section.tr-contact-active
.tr-contact-line {
    transform: scaleX(1);
}


/* =========================================================
   DETAIL STAGGER
   ========================================================= */

.tr-contact-detail {
    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.tr-contact-section.tr-contact-active
.tr-contact-detail:nth-of-type(1) {
    transition-delay: .45s;
}

.tr-contact-section.tr-contact-active
.tr-contact-detail:nth-of-type(2) {
    transition-delay: .6s;
}

.tr-contact-section.tr-contact-active
.tr-contact-detail:nth-of-type(3) {
    transition-delay: .75s;
}


.tr-contact-section.tr-contact-active
.tr-contact-detail {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .tr-contact-section {
        padding: 85px 0;
    }


    .tr-contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }


    .tr-contact-info-content {
        padding: 50px 35px;
    }


    .tr-contact-form-inner {
        padding: 50px 35px;
    }


    .tr-contact-info h2 {
        font-size: 35px;
    }


    .tr-contact-form-inner h3 {
        font-size: 32px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .tr-contact-section {
        padding: 65px 0;
    }


    .tr-contact-container {
        width: calc(100% - 30px);

        padding: 0 10px;
    }


    .tr-contact-wrapper {
        display: block;
    }


    /* LEFT */

    .tr-contact-info-content {
        padding: 50px 30px;
    }


    .tr-contact-info h2 {
        font-size: 35px;
    }


    .tr-contact-info-content > p {
        font-size: 13px;

        margin-bottom: 35px;
    }


    /* FORM */

    .tr-contact-form-inner {
        padding: 50px 30px;
    }


    .tr-contact-form-inner h3 {
        font-size: 31px;
    }


    .tr-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* MOBILE ANIMATION */

    .tr-contact-info {
        transform: translateY(50px);
    }


    .tr-contact-form-area {
        transform: translateY(50px);
    }


    .tr-contact-section.tr-contact-active
    .tr-contact-info,
    .tr-contact-section.tr-contact-active
    .tr-contact-form-area {
        transform: translateY(0);
    }

}


/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;

    border-radius: 50%;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25);

    text-decoration: none;

    animation: whatsappPulse 2s infinite;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.whatsapp-float img {

    width: 38px;
    height: 38px;

    object-fit: contain;

    display: block;
}


.whatsapp-float:hover {

    transform: scale(1.12);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35);
}


/* Pulse animation */

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.55);
    }

    70% {
        box-shadow:
            0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .whatsapp-float {

        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;
    }

    .whatsapp-float img {

        width: 34px;
        height: 34px;
    }
}