 /* Base Styles */
        :root {
            --primary: #ffffff;
            --secondary: #f8f9fa;
            --accent: #0d6efd;
            --text: #212529;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--primary);
            color: var(--text);
            overflow-x: hidden;
        }

        /* Navbar Styles */
/* ===== Sky Blue Navbar Styles ===== */
:root {
    --sky-blue: #87CEEB;
    --sky-blue-dark: #4682B4;
    --sky-blue-darker: #1A3E72;
    --nav-shadow: 0 4px 20px rgba(70, 130, 180, 0.15);
}

/* Navbar Base */


.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--sky-blue-darker);
}

.logo-text span {
    font-weight: 400;
    color: var(--sky-blue-dark);
}

.logo-icon {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--sky-blue-dark);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--sky-blue-darker);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--sky-blue-dark);
}

.link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sky-blue-dark);
    transition: width 0.3s ease;
}

.nav-link:hover .link-underline,
.nav-link.active .link-underline {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--sky-blue-dark);
    transition: all 0.3s ease;
    transform-origin: left center;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.5s ease;
        box-shadow: var(--nav-shadow);
        backdrop-filter: blur(8px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 10px 0;
    }
    
    .navbar-container {
        padding: 0 15px;
    }
}

/* Active State for Mobile */
.nav-links.active + .hamburger .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
}
.nav-links.active + .hamburger .hamburger-line:nth-child(2) {
    opacity: 0;
}
.nav-links.active + .hamburger .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
}


        
        /* Featured Properties */
        /* ===== Mixed Media Gallery Styles ===== */
.media-gallery {
    padding: 100px 20px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    color: #1A3E72;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #4682B4, transparent);
    margin: 20px auto;
}

.section-subtitle {
    color: #4682B4;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.gallery-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.media-card {
    background: transparent;
    border-radius: 8px;
    height:400px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(70, 130, 180, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(70, 130, 180, 0.2);
}

.media-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: transparent; /* Fallback for video loading */
}

.media-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.media-card:hover .media-element {
    transform: scale(1.08);
}

/* Video specific styles */
.media-wrapper video {
    object-position: center;
    background-color: #1A3E72; /* Dark blue fallback */
}

/* Play button (hidden for autoplay but preserved for accessibility) */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.media-wrapper:hover .play-button {
    opacity: 1;
}

.play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    stroke: white;
    stroke-width: 2;
}

.media-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #4682B4;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(70, 130, 180, 0.15);
    z-index: 2;
}

.media-caption {
    padding: 25px;
    background: transparent;
}

.media-caption h3 {
    font-family: 'Playfair Display', serif;
    color: #1A3E72;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.media-caption p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4682B4;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #1A3E72;
}

.learn-more svg {
    transition: transform 0.3s ease;
}

.learn-more:hover svg {
    transform: translateX(3px);
}

/* Video State Indicators */
.media-wrapper.video-muted::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z'/%3E%3Cpath d='M19 10v1a7 7 0 0 1-14 0v-1'/%3E%3Cpath d='M12 19v4'/%3E%3Cpath d='M8 23h8'/%3E%3C/svg%3E") no-repeat center;
    z-index: 2;
}

.mute-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 62, 114, 0.8);
    padding: 15px;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.mute-indicator.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

.mute-indicator svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1200px) {
    .gallery-container {
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .media-wrapper {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .media-gallery {
        padding: 80px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .media-caption {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .gallery-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .media-wrapper {
        height: 220px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .media-gallery {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .mute-indicator {
        padding: 12px;
    }
}

        /* Footer */
        /* ===== Footer Styles ===== */
.site-footer {
    background-color: #edf9ff; /* Dark blue from your palette */
    color: rgb(28, 27, 27);
    padding: 40px 0 20px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo svg {
    fill: none;
    stroke: #87CEEB; /* Sky blue accent */
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(28, 28, 28, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.links-column {
    min-width: 120px;
}

.links-column h4 {
    color: #87CEEB; /* Sky blue */
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column li {
    margin-bottom: 10px;
}

.links-column a {
    color: rgba(27, 27, 27, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.links-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(135, 206, 235, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright {
    color: rgba(24, 23, 23, 0.6);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgb(35, 35, 35);
    background: rgba(135, 206, 235, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #87CEEB;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 15px;
    }
}





     
        /*
        body {
            font-family: 'Montserrat', sans-serif;
            background: #f8f5f2;
            color: #333;
            line-height: 1.6;
            padding: 0;
        }
        */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            justify-content: center;
        }
        
        /* Video player styling */
        .video-column {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }
        
        .video-player {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            background: #fff;
            transition: all 0.3s ease;
            aspect-ratio: 16/9;
        }
        
        .video-player:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.3);
        }
        
        .video-player video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
        
        /* Video controls */
        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 12px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .video-player:hover .video-controls,
        .video-player:focus-within .video-controls {
            opacity: 1;
        }
        
        .control-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            backdrop-filter: blur(5px);
        }
        
        .progress-container {
            flex-grow: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            cursor: pointer;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: #c9a87c;
            width: 0%;
            border-radius: 4px;
            transition: width 0.1s linear;
        }
        
        /* Text column styling */
        .text-column {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            padding: 30px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .text-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(201,168,124,0.1) 0%, rgba(255,255,255,0) 100%);
            z-index: 0;
        }
        
        .text-content {
            position: relative;
            z-index: 1;
        }
        
        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #c9a87c;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #555;
        }
        
        .highlight {
            background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(201,168,124,0.3) 50%);
            padding: 0 3px;
            font-style: italic;
        }
        
        .signature {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: #2c3e50;
            margin-top: 30px;
            text-align: right;
            position: relative;
            display: inline-block;
            padding-right: 40px;
        }
        
        .signature::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            width: 30px;
            height: 2px;
            background: #c9a87c;
        }
        
        /* Decorative elements */
        .corner-decoration {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px solid rgba(201,168,124,0.2);
            border-radius: 8px;
        }
        
        .corner-1 {
            top: -10px;
            left: -10px;
            border-right: none;
            border-bottom: none;
        }
        
        .corner-2 {
            bottom: -10px;
            right: -10px;
            border-left: none;
            border-top: none;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                padding: 20px;
                gap: 30px;
            }
            
            .video-column,
            .text-column {
                max-width: 100%;
                min-width: auto;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .text-column {
                padding: 25px;
            }
        }













        /* ===== Horizontal Contact Styles ===== */
.contact-section {
    padding: 80px 20px;
    background-color: #F8F9FA;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    color: #1A3E72;
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #4682B4, transparent);
    margin: 20px auto;
}

.section-subtitle {
    color: #4682B4;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: white;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(70, 130, 180, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(70, 130, 180, 0.2);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: #4682B4;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-details h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1A3E72;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.contact-details a {
    color: #4682B4;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1A3E72;
}

.contact-details span {
    color: #2c3e50;
    font-size: 0.85rem;
    opacity: 0.8;
}

address {
    font-style: normal;
    line-height: 1.5;
    color: #2c3e50;
}

.map-link {
    margin-top: 5px;
    font-size: 0.85rem;
    color: #4682B4;
    font-weight: 500;
}

.social-container {
    max-width: 1000px;
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(70, 130, 180, 0.1);
}

.social-container span {
    color: #1A3E72;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    background: #4682B4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1A3E72;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .contact-item {
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        width: 100%;
        max-width: 400px;
    }
    
    .social-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .contact-icon {
        margin-bottom: 15px;
    }
}



#dm{
    margin-top:-200px;
}







