    /* About  */
    /* .container-about {
        max-width: 1200px;
        margin: auto;
        padding: 60px 20px;
    } */

    .title {
        font-size: 38px;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
    }

    .section p {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .btn {
        background: #ff6b57;
        color: #fff;
        padding: 12px 28px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        transition: background 0.3s ease;
        text-decoration: none;
    }

    .btn:hover {
        background: #e0442f;
    }

    .values {
        margin-top: 50px;
    }

    .values h2 {
        font-size: 30px;
        color: #1e1e2f;
        margin-bottom: 15px;
    }

    .values ul {
        list-style: none;
        padding-left: 0;
    }

    .values ul li {
        margin-bottom: 12px;
        font-size: 18px;
        padding-left: 20px;
        position: relative;
    }

    .values ul li::before {
        content: '●';
        position: absolute;
        left: 0;
        color: #ff6b57;
    }

    .services {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
    }

    .service-box {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        flex: 1 1 300px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .service-box h3 {
        font-size: 22px;
        margin-bottom: 10px;
        color: #222;
    }

    .agent-section {
        text-align: center;
        margin-top: 60px;
    }

    .slider-about {
        margin: 60px 0;
        overflow: hidden;
        position: relative;
    }

    .slider-about-track {
        display: flex;
        animation: scroll 15s linear infinite;
    }

    .slider-about-track img {
        height: 200px;
        margin-right: 20px;
        border-radius: 10px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @media (max-width: 768px) {
        .services {
            flex-direction: column;
        }

        .slider-about-track img {
            height: 150px;
        }
    }

    /* End */
    .footer__social svg {
        fill: currentColor;
        transition: all 0.3s ease;
    }

    .footer__social a:hover svg {
        color: #f82e2e;
    }

    .facebook :hover {
        color: #3576ee !important;
    }

    .linkdin :hover {
        color: #3576ee !important;
    }

    .footer__social {
        margin-bottom: 1rem;
    }

    /* Our  */


    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 30px 20px;
    }

    /* Property Cards Grid */
    .property-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-bottom: 80px;
    }

    .property-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        cursor: pointer;
    }

    .property-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .property-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
        z-index: 1;
    }

    .property-card.residential::before {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(239, 68, 68, 0.1) 100%);
    }

    .property-card.commercial::before {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
    }

    .property-card.industrial::before {
        background: linear-gradient(135deg, rgba(75, 85, 99, 0.3) 0%, rgba(75, 85, 99, 0.1) 100%);
    }

    .property-card.agricultural::before {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.1) 100%);
    }

    .property-image {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

    .property-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 32px;
        color: white;
        z-index: 2;
    }

    .property-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 8px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .property-count {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 16px;
    }

    .browse-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .browse-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateX(4px);
    }

    .browse-btn::after {
        content: '→';
        font-size: 18px;
    }



    /* Responsive Design */
    @media (max-width: 768px) {
        .container {
            padding: 40px 16px;
        }

        .property-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .about-section {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 40px 32px;
        }

        .about-content h2 {
            font-size: 32px;
        }

        .feature-list {
            grid-template-columns: 1fr;
        }

        .cta-buttons {
            flex-direction: column;
        }
    }

    /* Our End */
    .submenu {
        display: none;
        /* Hide submenu by default */
        position: absolute;
        background-color: #fff;
        list-style-type: none;
        padding: 10px 0;
        margin: 0;
        border: 1px solid #ddd;
        border-radius: 5px;
        z-index: 9999999;
        width: 250px;
    }

    .submenu li {
        padding: 5px 20px;
    }

    .submenu li a {
        text-decoration: none;
        color: #333;
    }

    .main__menu--items:hover .submenu {
        display: block;
        /* Show submenu on hover */
    }

    .main__menu--items {
        position: relative;
    }

    .submenu-icon {
        margin-left: 5px;
    }


    /* .banner {
        background-image: url('./assets/video/building.mp4');
     
        background-size: cover;
        background-position: center;
        height: 400px;
        
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
    }

    .banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
      
    }

    .banner-text {
        position: relative;
        z-index: 1;
    } */
    .video-banner {
        position: relative;
        height: 100vh;
        /* Full screen or adjust as needed */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
    }

    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .video-banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        /* Optional dark overlay */
        z-index: 1;
    }

    .banner-content {
        position: relative;
        z-index: 2;
    }


    .property-types {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
    }

    .property-types div {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        font-size: 18px;
        font-weight: 500;
        position: relative;
        transition: transform 0.3s ease;
    }

    .property-types div img {
        width: 200px;
        height: 100px;
        margin-left: 0px;
        margin-right: 10px;
        border-radius: 6px;
        object-fit: cover;
    }

    .property-types div:hover {
        transform: translateY(-6px);
    }













    /* Enhanced Footer Styling */
    .footer__section {
        background: linear-gradient(to right, #222831, #393E46) !important;
        color: #f5f5f5 !important;
        padding-top: 60px !important;
        position: relative !important;
        overflow: hidden !important;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1) !important;
    }

    .footer__section::before {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 3px !important;
        background: linear-gradient(to right, #F23B3B, #FF7676) !important;
        animation: shimmer 3s infinite linear !important;
    }

    @keyframes shimmer {
        0% {
            background-position: -100px;
        }

        100% {
            background-position: 100vw;
        }
    }

    .main__footer {
        padding-bottom: 40px !important;
    }

    .footer__widget--title {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        margin-bottom: 1.5rem !important;
        color: #fff !important;
        position: relative !important;
        display: inline-block !important;
        padding-bottom: 10px !important;
    }

    .footer__widget--title::after {
        content: "" !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 50px !important;
        height: 3px !important;
        background-color: #F23B3B !important;
        transition: width 0.3s ease !important;
    }

    .footer__widget--title:hover::after {
        width: 100% !important;
    }

    .footer__widget--button {
        display: none !important;
    }

    .footer__logo {
        margin-bottom: 1.5rem !important;
        transform: scale(1) !important;
        transition: transform 0.3s ease !important;
    }

    .footer__logo:hover {
        transform: scale(1.05) !important;
    }

    .footer__logo--img {
        border-radius: 10px !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    }

    .footer__widget--desc {
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: #e0e0e0 !important;
        margin-bottom: 1rem !important;
    }

    .footer__widget--info {
        padding-left: 0 !important;
        list-style: none !important;
        margin-top: 2rem !important;
    }

    .footer__widget--info_list {
        display: flex !important;
        align-items: flex-start !important;
        margin-bottom: 1rem !important;
        padding: 10px !important;
        border-radius: 8px !important;
        background-color: rgba(255, 255, 255, 0.05) !important;
        transition: all 0.3s ease !important;
    }

    .footer__widget--info_list:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) !important;
    }

    .footer__widget--info__icon {
        min-width: 30px !important;
        margin-right: 10px !important;
        fill: #F23B3B !important;
        stroke: #F23B3B !important;
    }

    .footer__widget--info__text {
        color: #e0e0e0 !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
    }

    .footer__widget--info__text:hover {
        color: #F23B3B !important;
    }

    .footer__social {
        display: flex !important;
        gap: 15px !important;
        margin-top: 2rem !important;
    }

    .footer__social a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .footer__social a::before {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
        transition: left 0.5s ease !important;
    }

    .footer__social a:hover::before {
        left: 100% !important;
    }

    /* .footer__social .facebook:hover {
        background-color: #3b5998 !important;
        transform: translateY(-5px) rotate(360deg) !important;
    }

    .footer__social .linkdin:hover {
        background-color: #0077b5 !important;
        transform: translateY(-5px) rotate(360deg) !important;
    }

    .footer__social .instagram:hover {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
        transform: translateY(-5px) rotate(360deg) !important;
    } */

    .footer__bottom {
        background-color: rgba(0, 0, 0, 0.3) !important;
        padding: 15px 0 !important;
    }

    .copyright__content {
        font-size: 14px !important;
        color: #a0a0a0 !important;
    }

    .text__secondary {
        color: #ccc !important;
    }

    .copyright__content--link {
        color: #F23B3B !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        position: relative !important;
    }

    .copyright__content--link::after {
        content: "" !important;
        position: absolute !important;
        bottom: -2px !important;
        left: 0 !important;
        width: 0 !important;
        height: 2px !important;
        background-color: #F23B3B !important;
        transition: width 0.3s ease !important;
    }

    .copyright__content--link:hover::after {
        width: 100% !important;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .footer__bottom--inner {
            flex-direction: column !important;
            gap: 10px !important;
            text-align: center !important;
        }
    }

    .offcanvas__submenu {
        display: none;
        list-style: none;
        padding-left: 15px;
        margin-top: 5px;
        margin-bottom: 20px !important;
        padding: 10px 35px;
    }

    .offcanvas__submenu li {
        line-height: 20px;
    }

    .offcanvas__menu_li.open .offcanvas__submenu {
        display: block;
    }

    .submenu-toggle {
        float: right;
        font-size: 18px;
        cursor: pointer;
    }



    /* Image at header */
    /* New video banner classes */
    .custom-video-banner {
        position: relative;
        height: 80vh;
        min-height: 350px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
        background: #111;
    }

    .custom-bg-image,
    .custom-bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .custom-video-banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

    .custom-banner-content {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .custom-banner-content p {
        font-size: 2.3rem;
        margin-bottom: 0.5rem;
        color: #fff;
        letter-spacing: 2px;
    }

    .custom-banner-content h1 {
        font-size: 5rem;
        font-family: serif;
        font-weight: 700;
        color: #fff;
        margin: 0;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    }

    @media (max-width: 768px) {
        .custom-video-banner {
            height: 45vh;
            min-height: 180px;
        }

        .custom-banner-content h1 {
            font-size: 2rem;
        }

        .custom-banner-content p {
            font-size: 1rem;
        }
    }

    /* Image at header end */



    .values-section {
        background-color: #111;
        /* White background */
        color: #fff;
        /* padding: 60px 10px; */
    }

    .values-header {
        margin-bottom: 40px;
    }

    .values-title {
        font-size: 4rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #fff;
    }

    .values-subtitle {
        color: #fff;
        font-size: 16px;
        /* max-width: 700px; */
        margin: 0 auto;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 20px;
        margin-top: 20px;
        padding: 0px 100px 0px 100px;
    }

    .value-card {
        background-color: #f9f9f9;
        border: 1px solid #e0e0e0;
        /* border-radius: 10px; */
        padding: 20px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        transition: all 0.3s ease;
    }

    .value-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .value-card .icon {
        font-size: 2rem;
        color: #ff6b57;
        /* Bootstrap green */
        flex-shrink: 0;
    }

    .value-card p {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
    }


    /* Agent Contact Section Styles */
    .agent-contact-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        /* dark overlay */
        z-index: 1;
    }

    .agent-contact-section .container {
        position: relative;
        z-index: 2;
    }

    .agent-contact-section {
        background-image: url('https://media.designcafe.com/wp-content/uploads/2022/04/22214644/decorate-a-rectangular-living-room-with-artwork.jpg');
        background-size: cover;
        /* make image cover the whole section */
        background-repeat: no-repeat;
        /* prevent tiling */
        background-position: center;
        /* center the image */
        color: #fff;
        text-align: center;
        padding: 60px 20px;
        position: relative;
    }

    .agent-contact-section .container {
        /* max-width: 800px; */
        margin: 0 auto;
    }

    .agent-contact-section h2 {
        font-size: 3rem;
        margin-bottom: 30px;
        font-weight: 600;
    }

    .agent-contact-section .buttons {
        display: flex;
        justify-content: end;
        gap: 20px;
        flex-wrap: wrap;
    }

    .agent-contact-section .btn {
        padding: 12px 25px;
        border: none;
        text-transform: uppercase;
        font-weight: 600;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background-color: #ff6b57;
        color: #fff;
    }

    .btn-primary:hover {
        background-color: #ff6b57;
    }

    .btn-secondary {
        background-color: #fff;
        color: #ff6b57;
        border: 2px solid #ff6b57;
    }

    .btn-secondary:hover {
        background-color: #ff6b57;
        color: #fff;
    }


    .about__content.aos-init.aos-animate {
        justify-content: end;
        display: flex;
        align-items: anchor-center;
    }