@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');
        :root {
            --primary-gold: #D4AF37;
            --dark-bg: #1a1a1a;
            --light-gray: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            /*font-family: 'Montserrat', sans-serif;*/
                font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
       
.on_call img{
    filter:invert(1);
    margin-right:10px
}
.navbar.active .on_call{
    color:black !important;
}
 .navbar.active .on_call img{
            filter:invert(0);
    margin-right:10px
        }
        /* Custom Navbar */
        .navbar-custom {
            background: rgba(0,0,0,0);
            backdrop-filter: blur(10px);
            padding: 0rem 0;
            transition: all 0.3s ease;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        .text-theme{
            color:var(--primary-gold);
        }

        .navbar-brand img {
            height: 80px;
        }

        .navbar-custom.active .nav-link{
            color: #000 !important;
        }
        .navbar-nav .nav-link {
            color: #fafafa !important;
            font-weight: 500;
            margin: 0 1rem;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-gold) !important;
        }

        .offcanvas {
            background: var(--dark-bg);
            color: white;
        }

        .offcanvas .nav-link {
            color: white !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-title {
            /*font-family: 'Playfair Display', serif;*/
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .btn-luxury {
            background: var(--primary-gold);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .btn-luxury:hover {
            background: #B8941F;
            color: white;
            transform: translateY(-2px);
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }
        

        .about-content h2 {
            /*font-family: 'Playfair Display', serif;*/
            /*font-size: 3rem;*/
            color: var(--dark-bg);
            margin-bottom: 2rem;
        }

        .about-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .sold-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: var(--primary-gold);
            color: white;
            padding: 10px 20px;
            transform: rotate(15deg);
            font-weight: bold;
            border-radius: 50px;
        }

        /* Logo Marquee */
        .logo-marquee {
            background: var(--dark-bg);
            padding: 60px 0;
            overflow: hidden;
        }

        .marquee-container {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        .marquee-item {
            flex: 0 0 auto;
            margin: 0 50px;
            /*opacity: 0.7;*/
            /* transition: opacity 0.3s ease; */
        }

        .marquee-item:hover {
            opacity: 1;
        }

        .marquee-item img {
            height: 100px;
            /*filter: brightness(0) invert(1);*/
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Property Slider */
        .property-slider-section {
            padding: 60px 0;
            background: var(--light-gray);
        }

        .section-title {
            /*font-family: 'Playfair Display', serif;*/
            font-size: 3rem;
            text-align: center;
            margin-bottom: 30px;
            color: var(--dark-bg);
        }

        .property-slider {
            position: relative;
            overflow: hidden;
        }

        .slider-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .property-card {
            flex: 0 0 60%;
            margin: 0 20px;
            background: white;
            border-radius: 0;
            overflow: hidden;
            /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
            transition: all 0.3s ease;
        }

        .property-card.active {
            flex: 0 0 80%;
            transform: scale(1.05);
        }

        .property-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .property-info {
            padding: 30px;
            display: flex;
            justify-content:space-between;
            text-align:right;
        }

        .property-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        .property-address {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 15px;
        }

        .property-details {
            display: flex;
            gap: 20px;
            color: #888;
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 30px;
            display: flex;
            gap: 15px;
            bottom:21px;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            /*background: rgba(255, 255, 255, 0.9);*/
            /*border: none;*/
            /*border-radius: 50%;*/
            /*display: flex;*/
            /*align-items: center;*/
            /*justify-content: center;*/
            /*cursor: pointer;*/
            /*transition: all 0.3s ease;*/
            color: var(--dark-bg);
        }

        .control-btn:hover {
            background: var(--primary-gold);
            color: white;
        }

        /* Parallax Section */
        .parallax-section {
            height: 500px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2075&q=80');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .parallax-content h3 {
            /*font-family: 'Playfair Display', serif;*/
            font-size: 3rem;
            margin-bottom: 2rem;
        }

        .parallax-content p {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Testimonials */
               .testimonials-section {
            position: relative;
            height: 70vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('lgg.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .testimonials-container {
            max-width: 1200px;
            width: 100%;
          
            position: relative;
        }

        .testimonials-header {
            text-align: left;
            margin-bottom: 3rem;
        }

        .testimonials-title {
            /*font-family: 'Playfair Display', serif;*/
            font-size: 4rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .testimonials-slider {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .testimonial-slide.active {
            opacity: 1;
        }

        .testimonial-content {
            flex: 1;
            color: white;
        }

        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 2rem;
            font-style: italic;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            letter-spacing: 0.5px;
        }

        .testimonial-author {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align:right;
        }

        .testimonial-image {
            flex: 0 0 300px;
            height: 300px;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Navigation Controls */
        .testimonial-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            display: flex;
            gap: 1rem;
        }

        .control-btn {
            background:var(--primary-gold);
            color: black;
            border: 2px solid rgba(255, 255, 255, 0.3);
            /*padding: 0.8rem 2rem;*/
            /*font-size: 1rem;*/
            /*font-weight: 600;*/
            /*text-transform: uppercase;*/
            /*letter-spacing: 1px;*/
            /*cursor: pointer;*/
            /*transition: all 0.3s ease;*/
            /*backdrop-filter: blur(10px);*/
            /*position: relative;*/
            /*overflow: hidden;*/
        }

        .control-btn:hover {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: white;
            transform: translateY(-2px);
        }

        .control-btn.active {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: white;
        }

        /* View All Button */
        .view-all-btn {
            position: absolute;
            bottom: 0;
            right: 0;
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            background: white;
            color: var(--dark-bg);
            transform: translateY(-2px);
        }

        /* Progress Indicators */
        .testimonial-indicators {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-gold);
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .testimonials-section {
                height: auto;
                padding: 4rem 0;
                background-attachment: scroll;
            }

            .testimonials-title {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }

            .testimonial-slide {
                flex-direction: column;
                height: auto;
                gap: 2rem;
                text-align: center;
            }

            .testimonial-image {
                flex: 0 0 250px;
                height: 250px;
                order: -1;
            }

            .testimonial-text {
                font-size: 1.1rem;
            }

            .testimonial-controls {
                position: static;
                justify-content: center;
                margin-top: 2rem;
            }

            .view-all-btn {
                position: static;
                margin-top: 2rem;
            }

            .testimonial-indicators {
                position: static;
                transform: none;
                justify-content: center;
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .control-btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }

            .view-all-btn {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }
        }

        /* Charity Section */
        .charity-section {
            padding: 60px 0;
            background: var(--light-gray);
        }

        .charity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .charity-card {
            background: white;
            border-radius: 0;
            overflow: hidden;
            /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
        }

        .charity-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .charity-content {
            padding: 30px;
            text-align: center;
                background: black;
    color: white;
        }

        /* Newsletter */
        .newsletter-section {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                        url('wwrr.jpg');
            color: white;
            text-align: center;
        }
        .hr{
            max-width:300px;
            opacity:1;
            margin-left:auto;
            margin-right:auto;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            margin-top: 40px;
        }

        .newsletter-form input {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 0;
            margin-bottom: 20px;
            outline:none;
        }

        /* Location Cards */
        .location-section {
            padding: 60px 0;
            background: white;
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 0;
            margin-top: 60px;
        }

        .location-card {
            position: relative;
            height: 300px;
            border-radius: 0;
            overflow: hidden;
            cursor: pointer;
        }
        .work_with_us_content{
                font-size: 18px;font-weight: 300;max-width: 800px;margin: auto;
        }

        .location-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .location-card:hover img {
            transform: scale(1.1);
        }

        .location-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            /*font-family: 'Playfair Display', serif;*/
            font-size: 2rem;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background: #fff;
            color: black;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            margin-bottom: 20px;
            color: var(--primary-gold);
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: var(--primary-gold);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--primary-gold);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #B8941F;
            transform: translateY(-2px);
        }

        .footer-bottom {
           border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #000;
    display: flex
;
    justify-content: space-between;
    align-items: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .property-card {
                flex: 0 0 90%;
            }

            .property-card.active {
                flex: 0 0 90%;
                transform: none;
            }

            .parallax-section {
                background-attachment: scroll;
            }
        }
    