   
        body,h1,h2,h3,h4,h5,.uk-navbar-nav>li>a,.uk-logo .p1,.stat-number,.section-title p,.uk-heading-large,.uk-text-lead,.stat-label,.property-address,.feature-label,.testimonial-text{
            font-family: 'Quicksand', sans-serif;
        }
        
        :root {
            --primary-color: #2D6FF7;
            --secondary-color: #FF5A5F;
            --accent-color: #00C9A7;
            --dark-color: #1A1A1A;
            --light-color: #F8F9FA;
            --gray-color: #6C757D;
            --border-color: #E9ECEF;
            --gradient: linear-gradient(135deg, #2D6FF7 0%, #1a4bbf 100%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        /* Header */
        .uk-navbar-container:not(.uk-navbar-transparent) {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .uk-navbar-nav > li > a {
            font-weight: 500;
            position: relative;
        }
        
        .uk-navbar-nav > li > a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .uk-navbar-nav > li.uk-active > a:after,
        .uk-navbar-nav > li > a:hover:after {
            width: 80%;
        }
        
        /* Updated Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%232D6FF7" opacity="0.05"/></svg>') no-repeat right top;
            background-size: cover;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 24px;
            line-height: 1.1;
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
            font-size: 3.5rem;
        }
        
        .hero-subtitle {
            color: #495057;
            font-size: 1.4rem;
            line-height: 1.6;
            margin-bottom: 32px;
            max-width: 90%;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-primary-custom {
            background: var(--gradient);
            border: none;
            border-radius: 50px;
            padding: 14px 32px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(45, 111, 247, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            color: white;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(45, 111, 247, 0.4);
            color: white;
        }
        
        .btn-primary-custom::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a4bbf 0%, #2D6FF7 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .btn-primary-custom:hover::after {
            opacity: 1;
        }
        
        .btn-primary-custom span {
            position: relative;
            z-index: 2;
        }
        
        .btn-secondary-custom {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            padding: 14px 32px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-secondary-custom:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(45, 111, 247, 0.2);
        }
        
        .hero-stats-container {
            display: flex;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }
        
        .hero-stat-item {
            display: flex;
            flex-direction: column;
        }
        
        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        
        .hero-stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 8px;
        }
        
        .hero-decoration {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--primary-color);
            opacity: 0.1;
            top: -100px;
            right: -100px;
            z-index: 1;
        }
        
        .hero-decoration-2 {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: var(--accent-color);
            opacity: 0.05;
            bottom: -50px;
            right: 200px;
            z-index: 1;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: var(--light-color);
        }
        
        .about-content {
            padding-right: 30px;
        }
        
        .about-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Values Section */
        .values-section {
            padding: 80px 0;
        }
        
        .value-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
        }
        
        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(45, 111, 247, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        /* Services Section */
        .services-section {
            background: var(--light-color);
            padding: 80px 0;
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(45, 111, 247, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        /* Leadership Team */
        .team-section {
            padding: 80px 0;
        }
        
        .team-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .team-photo {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-photo {
            transform: scale(1.08);
        }
        
        .team-card-content {
            padding: 20px;
        }
        
        /* Testimonials */
        .testimonials-section {
            background: var(--light-color);
            padding: 80px 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: auto;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--primary-color);
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0048BA 100%);
            color: white;
            padding: 80px 0;
            position: relative;
        }
        
        /* Footer */
        .footer {
            background: #1A1A1A;
            color: #fff;
            padding: 60px 0 30px;
        }
        
        .footer a {
            color: rgba(255,255,255,0.7);
            transition: all 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
            text-decoration: none;
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--light-color);
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--gray-color);
            margin-top: 10px;
        }
        
        /* Section Styling */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--gray-color);
            max-width: 600px;
            margin: 25px auto 0;
        }
        
        /* Scroll to Top Arrow */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(45, 111, 247, 0.3);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-to-top:hover {
            background: #1a4bbf;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(45, 111, 247, 0.4);
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 960px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                max-width: 100%;
            }
            
            .hero-decoration,
            .hero-decoration-2 {
                display: none;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .uk-navbar-center, .uk-navbar-right .uk-button {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .about-content {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 40px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 640px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .hero-stats-container {
                gap: 20px;
            }
            
            .hero-stat-number {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .scroll-to-top {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }
        }
 