/*!
Theme Name: krishnarealtytheme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: krishnarealtytheme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

krishnarealtytheme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

.container-fluid{
    width: 1340px !important;
}
:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --secondary: #10B981;
    --accent: #F59E0B;
    --dark: #0F172A;
    --darker: #020617;
    --light: #F8FAFC;
    --gray: #64748B;
    --border: #E2E8F0;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

h1, h2, h3, h4, h5 {
    font-family: 'Sora', sans-serif;
}

a{
    text-decoration:none;
}
/* Navbar */
.navbar-modern {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar-modern.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
}

.logo span {
    color: var(--primary);
}

.nav-modern {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-modern a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-modern a:hover {
    color: var(--primary);
}

.btn-modern {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-modern:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-badge i {
    color: var(--accent);
}

.hero-modern h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-modern p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Stats */
.stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Section */
.section-modern {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-modern {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Cards */
.service-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-modern:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    transform: translateY(-8px);
}

.service-modern:hover::before {
    transform: scaleX(1);
}

.service-icon-modern {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: white;
}

.service-modern h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-modern p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 12px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.service-list li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

/* Features Grid */
.feature-modern {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.feature-modern:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.1);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--primary);
}

.feature-modern h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-modern p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Projects */
.project-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.4s;
    height: 100%;
}

.project-modern:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    transform: translateY(-8px);
}

.project-image-modern {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.project-image-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.project-badge-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.project-content-modern {
    padding: 32px;
}

.project-content-modern h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.project-content-modern p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.project-meta-modern {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--gray);
}

.project-meta-modern span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-meta-modern i {
    color: var(--primary);
}

/* Testimonials */
.testimonial-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid var(--border);
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.testimonial-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.testimonial-info p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.stars-modern {
    color: var(--accent);
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.8;
    font-size: 15px;
}

/* About Section */
.about-section {
    background: var(--light);
}

.about-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
}

/* Team Section */
.team-section {
    background: white;
}

.team-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(16, 185, 129, 0.05));
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
}

.team-highlight h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.team-highlight p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

/* Insights */
.insight-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 2px solid var(--border);
    height: 100%;
    transition: all 0.3s;
}

.insight-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.insight-meta {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

.insight-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

/* CTA Modern */
.cta-modern {
    background: var(--dark);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.cta-modern h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-modern p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Footer Modern */
.footer-modern {
    background: var(--darker);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 32px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-brand h3 span {
    color: var(--primary);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-modern {
    display: flex;
    gap: 12px;
}

.social-modern a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-modern a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h5 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-modern h1 {
        font-size: 56px;
    }
    
    .section-title h2 {
        font-size: 40px;
    }

    .stats-modern {
        grid-template-columns: 1fr;
    }

    .nav-modern {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .hero-modern h1 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .cta-modern h2 {
        font-size: 36px;
    }

    .cta-modern {
        padding: 60px 32px;
    }
}

/**/
.property-div{
    margin-top: 30px;
}

.a{
    text-decoration: none;
}