@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap');

/* Base Styles */
body {
    font-family: 'Space Grotesk', sans-serif;
    scroll-behavior: smooth;
    color: #0d0c13;
    line-height: 1.6;
}

/* Loading Screen */
.loading {
    background: rgba(0, 0, 0, 0.9);
    transition: opacity 0.3s ease;
}

/* Header Styles */
.glass-effect {
    background: rgba(27, 23, 23, 0.05);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #6366f1 0%, #8b5cf6 100%);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Form Inputs */
.dark-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.dark-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
    }

    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .mobile-menu.active {
        max-height: 500px;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

/* Additional Effects */
.property-card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
/* Hero Section Styles */
/* CSS */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9) 30%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.text-container {
    max-width: 1200px;
    width: 100%;
}

.masked-heading {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 2rem 0;
    mask-image: linear-gradient(
        to right,
        rgba(255,255,255,1) 60%,
        rgba(255,255,255,0) 95%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(255,255,255,1) 60%,
        rgba(255,255,255,0) 95%
    );
}

.masked-heading span {
    display: block;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.sub-section {
    border-left: 4px solid #3b82f6;
    padding-left: 2rem;
    margin: 2rem 0;
}

.tagline {
    font-size: 2.2rem;
    color: #fff;
    margin: 0 0 1rem 0;
    letter-spacing: 0.5px;
}

.description {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #60a5fa;
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
}

.feature p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .masked-heading {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 5%;
    }
    
    .masked-heading {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .sub-section {
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .masked-heading {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
}
/* Navigation Link Styles */
.nav-link {
    color: black; /* Change text color to black */
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}