:root {
    --primary-blue: #0a2463;
    --secondary-blue: #1e40af;
    --accent-blue: #3b82f6;
    --light-blue: #dbeafe;
    --dark-blue: #0c1b33;
    --gradient-primary: linear-gradient(135deg,
            var(--primary-blue),
            var(--secondary-blue));
    --gradient-secondary: linear-gradient(135deg,
            var(--secondary-blue),
            var(--accent-blue));
    --gradient-third: linear-gradient(135deg,
            var(--secondary-blue),
            var(--accent-blue));
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    /* background-color: #0c1b33; */
}

h1,
h2,
h3,
:root {
    --primary-blue: #0a2463;
    --secondary-blue: #1e40af;
    --accent-blue: #3b82f6;
    --light-blue: #dbeafe;
    --dark-blue: #0c1b33;
    --gradient-primary: linear-gradient(135deg,
            var(--primary-blue),
            var(--secondary-blue));
    --gradient-secondary: linear-gradient(135deg,
            var(--secondary-blue),
            var(--accent-blue));
    --gradient-third: linear-gradient(135deg,
            var(--secondary-blue),
            var(--accent-blue));
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    /* background-color: #0c1b33; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

/* Topbar Styles */
.topbar {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.topbar-contact a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.topbar-contact a:hover {
    color: var(--light-blue);
}

.topbar-social a {
    color: white;
    margin-left: 15px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.topbar-social a:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
    color: var(--dark-blue);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-primary {
    background: var(--gradient-secondary);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: 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: var(--gradient-primary); */
    background: linear-gradient(135deg,
            rgba(13, 13, 13, 0.9) 0%,
            rgba(5, 25, 55, 0.8) 35%,
            rgba(0, 60, 120, 0.7) 70%,
            rgba(0, 10, 25, 0.85) 100%);
    opacity: 0.7;
    z-index: -1;
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.search-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
}

.search-box .form-control {
    border: none;
    border-bottom: 1px solid var(--light-blue);
    border-radius: 0;
    padding: 10px 0;
    background: transparent;
}

.search-box .form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid var(--accent-blue);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .topbar-contact,
    .topbar-social {
        text-align: center;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

/* About Section CSS */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
    z-index: 0;
}

.about-badge {
    display: inline-block;
    position: relative;
}

.badge-text {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signature-block {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.signature-img {
    object-fit: cover;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.signature-block-inner {
    height: 50px;
    width: 50px;
    margin-right: 2%;
    overflow: hidden;
    border-radius: 21%;

}

.about-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-icon i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.about-features .d-flex:hover .about-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.about-image-container {
    padding: 20px;
}

.main-image {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.floating-stats {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 3;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(10, 36, 99, 0.2);
}

.experience-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.experience-badge small {
    font-size: 0.7rem;
    opacity: 0.9;
}

.about-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
}

.achievement-item {
    padding: 20px;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievement-text {
    color: #475569;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .floating-stats {
        position: absolute;
        top: 0%;
        right: 0%;
        margin-top: 20px;
        display: inline-block;
    }

    .experience-badge {
        position: absolute;
        bottom: 0%;
        left: 0%;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .about-image-container {
        padding: 10px;
    }
}

/* Neighborhood Section CSS - Works with Bootstrap and Tailwind */
.neighborhood-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.neighborhood-tabs .nav-link {
    background: transparent;
    color: #64748b;
    border: none;
    padding: 12px 24px;
    margin: 0 8px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.neighborhood-tabs .nav-link.active {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.neighborhood-tabs .nav-link:hover:not(.active) {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}

.neighborhood-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.neighborhood-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.neighborhood-stats .stat-card {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 180px;
}

.neighborhood-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neighborhood-stats .stat-label {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amenity-item {
    padding: 8px 0;
}

.amenity-icon {
    width: 40px;
    height: 40px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.amenity-icon i {
    color: var(--accent-blue);
    font-size: 1rem;
}

.highlight-badge {
    background: var(--light-blue);
    color: var(--accent-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.comparison-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-card table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.comparison-card table td {
    padding: 15px;
    vertical-align: middle;
    border-color: rgba(0, 0, 0, 0.05);
}

.comparison-card table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .neighborhood-tabs .nav-link {
        padding: 10px 15px;
        margin: 5px;
        font-size: 0.9rem;
    }

    .neighborhood-stats .stat-card {
        min-width: 140px;
        padding: 10px 15px;
    }

    .neighborhood-stats .stat-number {
        font-size: 1.2rem;
    }
}

/* Gallery Section CSS */
.gallery-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--light-blue);
    color: var(--dark-blue);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 36, 99, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-blue);
    backdrop-filter: blur(10px);
}

.cta-card {
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

/* Contact Section CSS */
.contact-section {
    position: relative;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.contact-item h5 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.form-card {
    border: none;
}

.form-label {
    font-weight: 500;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.1);
}

.btn-primary {
    background: var(--gradient-secondary);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.business-hours {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.business-hours h5 {
    color: var(--dark-blue);
    font-weight: 600;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
        margin-bottom: 10px;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to bottom, transparent 0%, rgba(10, 36, 99, 0.6) 100%);
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .contact-icon i {
        font-size: 1rem;
    }
}

/* Utility Classes for Tailwind-like functionality */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-blue-900 {
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
}

.to-blue-700 {
    --tw-gradient-to: #1d4ed8;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.rounded-3 {
    border-radius: 0.75rem;
}

/* Testimonials Section CSS */
.testimonials-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.testimonial-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--light-blue);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.7;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--light-blue);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    font-size: 0.9rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #555;
}

.property-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

/* Trust Indicators */
.trust-indicators {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item {
    padding: 10px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-text {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Blog Section CSS */
.blog-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-meta {
    font-size: 0.85rem;
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.6;
}

.read-more {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-blue);
    transform: translateX(3px);
}

.tag {
    background: var(--light-blue);
    color: var(--accent-blue);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-card {
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.newsletter-form .form-control {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    padding: 12px 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    color: white;
}

.newsletter-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-form .form-check-input:checked {
    background-color: white;
    border-color: white;
}

.newsletter-form .form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .client-info {
        margin: 10px 0;
    }

    .rating {
        margin: 10px auto 0;
    }

    .trust-number {
        font-size: 2rem;
    }

    .blog-image {
        height: 180px;
    }
}

/* Animation for subtle entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card,
.blog-card {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(2),
.blog-card:nth-child(2) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(3),
.blog-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Footer CSS */
.luxury-footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



.footer-links li {
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.hover-gold {
    transition: all 0.3s ease;
}

.hover-gold:hover {
    color: #d4af37 !important;
    transform: translateX(3px);
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px 0 0 10px;
    padding: 12px 15px;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    color: white;
}

.footer-newsletter .btn {
    border-radius: 0 10px 10px 0;
    background: var(--gradient-secondary);
    border: none;
    padding: 12px 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}


.footer-legal a {
    transition: color 0.3s ease;
    color: #f0f0f0 !important;
}

.footer-legal a:hover {
    color: var(--light-blue) !important;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

#backToTop {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    display: none;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-brand h3 {
        font-size: 1.8rem;
    }

    .footer-main .row>div {
        margin-bottom: 2rem;
    }

    .footer-legal {
        text-align: left !important;
        margin-top: 1rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }

    #backToTop {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center;
    }

    .footer-newsletter .input-group {
        flex-direction: column;
    }

    .footer-newsletter .form-control {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .footer-newsletter .btn {
        border-radius: 10px;
        width: 100%;
    }
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-main .col-lg-4,
.footer-main .col-lg-2,
.footer-main .col-lg-3 {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-main .col-lg-4 {
    animation-delay: 0.1s;
}

.footer-main .col-lg-2 {
    animation-delay: 0.2s;
}

.footer-main .col-lg-3:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-main .col-lg-3:nth-child(4) {
    animation-delay: 0.4s;
}


/* Awards Section CSS */
.awards-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.award-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.award-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.award-icon i {
    color: white;
    font-size: 2rem;
}

.award-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--accent-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Brands Carousel */
.brands-carousel {
    margin: 0 -15px;
}

.brand-logo {
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.brand-logo img {
    transition: all 0.3s ease;
    max-height: 50dvh;
    width: auto;
}

.brand-logo:hover img {
    transform: scale(1.1);
}

/* Slick Carousel Customization */
.slick-track {
    display: flex;
    align-items: center;
}

.slick-slide {
    padding: 0 15px;
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--accent-blue);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--accent-blue);
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
    color: var(--accent-blue);
    opacity: 0.7;
}

.slick-prev:before {
    content: '\f104';
}

.slick-next:before {
    content: '\f105';
}

.slick-prev:hover:before,
.slick-next:hover:before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .award-card {
        margin-bottom: 20px;
    }

    .brand-logo {
        padding: 10px;
    }

    .brand-logo img {
        max-height: 100px;
    }


    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }
}

@media (max-width: 576px) {

    .slick-prev,
    .slick-next {
        display: none !important;
    }

    .brand-logo {
        padding: 10px;
    }

    .brand-logo img {
        max-height: 100px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.award-card {
    animation: fadeInUp 0.6s ease forwards;
}

.award-card:nth-child(2) {
    animation-delay: 0.1s;
}

.award-card:nth-child(3) {
    animation-delay: 0.2s;
}

.ul-section-spacing {
    padding-top: clamp(60px, 6.31vw, 120px);
    padding-bottom: clamp(60px, 6.31vw, 120px);
}

.ul-inner-page-container {
    --container-space-x: 30px;
    max-width: calc(clamp(1000px, 74.09vw, 1410px) + var(--container-space-x));
    padding-left: calc(var(--container-space-x) / 2);
    padding-right: calc(var(--container-space-x) / 2);
    margin: auto;
}


.ul-slider-nav {
    position: absolute;
    width: calc(100% + clamp(46px, 2.94vw, 56px));
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    visibility: hidden;
}

.ul-slider-nav button {
    width: clamp(46px, 2.94vw, 56px);
    aspect-ratio: 1/1;
    background-color: var(--primary-blue);
    border-radius: 999px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(17px, 1.05vw, 20px);
}

.ul-slider-nav button:hover {
    background-color: var(--accent-blue);
    color: white;
}

.ul-breadcrumb {
    background: url(../img/bg1.jpeg) no-repeat center center;
    background-size: cover;
    padding: clamp(50px, 6.31vw, 120px) 15px;
    padding-top: clamp(128px, 10.4vw, 198px);
    text-align: center;
    position: relative;
    z-index: 1;
}

.ul-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    z-index: -1;
    opacity: 0.8;
}

.ul-breadcrumb-title {
    font-weight: 900;
    /* font-size: clamp(25px, 2.52vw, 48px); */
    color: white;
    /* line-height: 1.3; */
    /* margin-bottom: clamp(10px, 0.95vw, 18px); */
}

.ul-breadcrumb-nav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1 rem;
    gap: clamp(7px, 0.53vw, 10px);
    color: white;
    padding: clamp(4px, 0.37vw, 7px) clamp(10px, 0.79vw, 15px);
}

.ul-breadcrumb-nav a {
    color: white;
    text-decoration: dotted;
}

.ul-breadcrumb-nav a:hover {
    color: var(--light-blue);
}

.ul-breadcrumb .separator {
    display: inline-flex;
    font-size: clamp(15px, 0.95vw, 18px);
}

/* team */
.ul-team {
    position: relative;
    background: linear-gradient(90deg, rgb(255, 255, 255) 67%, #F2F7FD 0%);
}

.ul-team-slider {
    padding: 40px 29px;
    margin: -40px -29px;
}

@media screen and (max-width: 1199px) {
    .ul-team-slider {
        padding: 40px 20px;
        margin: -40px -20px;
    }
}

@media screen and (max-width: 767px) {
    .ul-team-slider {
        padding: 40px 0;
        margin: -40px 0;
    }
}

.ul-team-card {
    position: relative;
}

.ul-team-card:hover .ul-team-card-socials-links {
    transform: translateY(0);
    opacity: 1;
}

.ul-team-card-img {
    border-radius: 16px;
    overflow: hidden;
}

.ul-team-card-img img {
    width: 100%;
    aspect-ratio: 370/375;
}

.ul-team-card-txt {
    background-color: var(--light-blue);
    position: relative;
    z-index: 1;
    margin: 0 clamp(12px, 1.26vw, 24px);
    margin-top: clamp(-44px, -2.31vw, -34px);
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    padding: 0 clamp(12px, 1.26vw, 24px);
    padding-bottom: clamp(12px, 1.26vw, 24px);
}

.ul-team-card-txt::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: calc(0px - clamp(13px, 1.73vw, 33px));
    left: 0;
    background-color: white;
    transform: skewY(4deg);
    border-radius: 16px;
}

.ul-team-card-socials {
    position: absolute;
    right: clamp(17px, 1.05vw, 20px);
    top: clamp(-43px, -2.26vw, -23px);
}

.ul-team-card-socials-icon {
    background-color: var(--primary-blue);
    width: clamp(30px, 1.89vw, 36px);
    aspect-ratio: 1/1;
    border-radius: 999px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(12px, 0.79vw, 15px);
}

.ul-team-card-socials-links {
    display: flex;
    flex-direction: column;
    gap: clamp(5px, 0.42vw, 8px);
    position: absolute;
    z-index: -2;
    font-size: clamp(11px, 0.74vw, 14px);
    opacity: 0;
    transition: 0.2s linear;
    bottom: calc(100% + 8px);
    transform: translateY(40%);
}

.ul-team-card-socials-links a {
    background-color: var(--primary-blue);
    width: clamp(30px, 1.89vw, 36px);
    aspect-ratio: 1/1;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    text-decoration: none;
}

.ul-team-card-socials-links a:hover {
    color: white;
    background-color: var(--secondary-blue);
}

.ul-team-card-title {
    font-weight: 600;
    font-size: clamp(18px, 1.16vw, 22px);
    color: '#000';
}

.ul-team-card-title a {
    font-weight: 600;
    font-size: clamp(18px, 1.16vw, 22px);
    color: '#000';
    text-decoration: none;
}

.ul-team-card-subtitle {
    color: #000;
    font-size: clamp(13px, 0.84vw, 16px);
    font-weight: 500;
}

.ul-team-card-subtitle a {
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.ul-team-card-subtitle a:hover {
    color: var(--accent-blue);
}

.ul-team-vectors>* {
    position: absolute;
}

.ul-team-vectors>*:first-child {
    bottom: clamp(-15px, 2.36vw, 45px);
    left: clamp(-15px, 2.36vw, 45px);
}

.ul-team-vectors>*:nth-child(2) {
    top: clamp(-15px, 2.36vw, 45px);
    right: clamp(-15px, 2.36vw, 45px);
}

.ul-team-vectors img {
    max-width: clamp(60px, 6.83vw, 130px);
}

.ul-contact-map {
    width: 100%;
    height: clamp(300px, 31.53vw, 600px);
    vertical-align: top;
    margin-top: clamp(60px, 6.31vw, 120px);
}

/* Property Listings Section CSS */
.property-listings-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-height: 100vh;
}

/* Search Box */
.search-box-container {
    margin: 0 auto;
    max-width: 1200px;
}

.search-box {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.search-box .form-control,
.search-box .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    background: white;
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.1);
}

/* Property Card */
.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 250px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-badge.featured {
    background: var(--gradient-secondary);
}


.property-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--dark-blue);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.property-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.property-location {
    color: #64748b;
    font-size: 0.95rem;
}

.property-location i {
    color: var(--accent-blue);
    font-size: 1rem;
}

.property-features {
    border-bottom: 1px solid #e2e8f0;
}

.feature-item i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.property-description {
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.page-link {
    border: 2px solid #e2e8f0;
    color: var(--dark-blue);
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
}

.page-item.active .page-link {
    background: var(--gradient-secondary);
    border-color: var(--accent-blue);
    color: white;
}

/* CTA Section */
.cta-container {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%) !important;
}

.cta-title {
    font-size: 2.5rem;
}

.cta-actions .btn {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-actions .btn-light {
    background: white;
    color: var(--primary-blue);
    border: none;
}

.cta-actions .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-outline-light {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.cta-actions .btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-image {
        height: 200px;
    }

    .property-content {
        padding: 20px !important;
    }

    .property-title {
        font-size: 1.2rem;
    }

    .cta-container {
        padding: 40px 20px !important;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .search-box .row {
        flex-direction: column;
    }

    .search-box .col-md-4,
    .search-box .col-md-3,
    .search-box .col-md-2 {
        width: 100%;
        margin-bottom: 15px;
    }

    .property-features {
        flex-wrap: wrap;
        gap: 15px;
    }

    .feature-item {
        flex: 0 0 calc(50% - 10px);
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 200px;
    }
}

/* Utility Classes for Background Colors */
.bg-blue-600 {
    background-color: rgba(37, 99, 235, 0.6);
}

.bg-blue-500 {
    background-color: rgba(59, 130, 246, 0.5);
}

.translate-middle-y {
    transform: translateY(-50%);
}

/* property details */

.ul-project-details-heading {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(20px, 1.89vw, 36px);
}

@media screen and (max-width: 991px) {
    .ul-project-details-heading {
        flex-direction: column;
    }
}

.ul-project-details-heading .right {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.26vw, 24px);
}

@media screen and (max-width: 575px) {
    .ul-project-details-heading .right {
        flex-direction: column;
        align-items: center;
    }
}

.ul-project-details-title {
    font-weight: 700;
    font-size: clamp(24px, 1.58vw, 30px);
    margin-bottom: clamp(11px, 0.74vw, 14px);
}

.ul-project-details-location {
    display: flex;
    align-items: center;
    font-size: clamp(13px, 0.84vw, 16px);
    gap: clamp(7px, 0.53vw, 10px);
    color: var(--dark-blue);
}

.ul-project-details-location .icon {
    color: var(--accent-blue);
    display: inline-flex;
}

.ul-project-details-actions {
    display: flex;
    gap: clamp(8px, 0.84vw, 16px);
}

@media screen and (max-width: 479px) {
    .ul-project-details-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.ul-project-details-action {
    display: flex;
    align-items: center;
    gap: clamp(9px, 1vw, 12px);
    color: var(--accent-blue);
    font-size: clamp(13px, 0.84vw, 16px);

    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--accent-blue);
}

@media screen and (max-width: 479px) {
    .ul-project-details-action {
        padding: 0;
    }
}

.ul-project-details-action:hover {
    color: var(--primary-blue);
}

.ul-project-details-action:hover .icon {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--light-blue);
}

.ul-project-details-action .icon {
    border: 1px solid #ddd;
    width: clamp(35px, 2.1vw, 40px);
    aspect-ratio: 1/1;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(15px, 0.95vw, 18px);
    color: var(--dark-blue);
    transition: 0.4s ease;
}

.ul-project-details-slider-wrapper {
    margin-bottom: clamp(23px, 2.79vw, 53px);
}

.ul-project-details-img-slider {
    border-radius: 20px;
    overflow: hidden;
}

.ul-project-details-img-slider img {
    width: 100%;
    aspect-ratio: 930/488;
    object-fit: cover;
}

.ul-project-details-img-slider-thumb {
    margin-top: clamp(15px, 1.26vw, 24px);
}

.ul-project-details-img-slider-thumb .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
}

.ul-project-details-img-slider-thumb .swiper-slide-thumb-active {
    border: 5px solid var(--accent-blue);
}

.ul-project-details-img-slider-thumb img {
    width: 100%;
    aspect-ratio: 214/156;
    object-fit: cover;
}

.ul-project-details-block {
    margin-bottom: clamp(20px, 2.36vw, 45px);
}

.ul-project-details-block:last-child {
    margin-bottom: 0;
}


.ul-project-details-overview-infos {
    background-color: #fafafa;
    border-radius: 16px;
    padding: clamp(15px, 2.1vw, 40px);
}

.ul-project-details-overview-info {
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.63vw, 12px);
}

.ul-project-details-overview-info .icon {
    border: 1px solid var(--light-blue);
    border-radius: 6px;
    width: clamp(40px, 2.31vw, 44px);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: clamp(18px, 1.56vw, 22px);
}

.ul-project-details-overview-info .key {
    font-weight: 600;
    font-size: clamp(11px, 1vw, 14px);
    color: '#000';
    display: block;
    line-height: 1.3;
}

.ul-project-details-overview-info .value {
    font-size: clamp(13px, 1vw, 14px);
    color: var(--accent-blue);
}

.ul-project-details-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.ul-project-details-video .video-cover {
    width: 100%;
}

.ul-project-details-video a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(50px, 3.36vw, 64px);
    aspect-ratio: 1/1;
    border-radius: 999px;
    /* background: radial-gradient(151.64% 120.36% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%); */
    backdrop-filter: blur(21px);
    border: 1px solid var(--light-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
}

.ul-project-details-video a:hover {
    background-color: var(--light-blue);
    color: var(--accent-blue);
}

.ul-project-details-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.05vw, 20px);
}

@media screen and (max-width: 767px) {
    .ul-project-details-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 479px) {
    .ul-project-details-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ul-project-details-features .feature {
    display: flex;
    align-items: center;
    gap: clamp(9px, 1vw, 12px);
    font-size: clamp(12px, 1vw, 15px);
    color: var(--primary-blue);
}

.ul-project-details-features .feature .icon {
    display: inline-flex;
}

.ul-project-details-features .feature i {
    color: var(--accent-blue);
    font-size: clamp(17px, 1vw, 20px);
    font-size: clamp(15px, 1vw, 18px);
}

.ul-project-details-map iframe {
    width: 100%;
    aspect-ratio: 927/415;
    border-radius: 16px;
}

/* Services Page Styles */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card {
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
    background-color: var(--primary-blue);
}

.service-card:hover .icon-wrapper i {
    color: white !important;
}

.service-link {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-blue);
}


/* team details */
.ul-inner-page-content-wrapper {
    padding-top: clamp(60px, 2.31vw, 120px);
    padding-bottom: clamp(60px, 2.31vw, 120px);
    padding-bottom: 0;
}

.ul-container {
    --container-space-x: 30px;
    max-width: calc(clamp(940px, 71.48vw, 1170px) + var(--container-space-x));
    padding-left: calc(var(--container-space-x) / 2);
    padding-right: calc(var(--container-space-x) / 2);
    margin: auto;
}

.ul-team-details {
    display: flex;
    align-items: center;
    gap: clamp(15px, 1.58vw, 30px);
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: clamp(15px, 1.58vw, 30px);
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .ul-team-details {
        flex-direction: column;
        align-items: flex-start;
    }
}

.ul-team-details-img {
    flex-shrink: 0;
    max-width: clamp(287px, 19.44vw, 370px);
    border-radius: 12px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .ul-team-details-img {
        width: 100%;
        max-width: 100%;
    }
}

.ul-team-details-img img {
    width: 100%;
    aspect-ratio: 370/466;
    object-fit: cover;
}

.ul-team-details-name {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: clamp(5px, 0.42vw, 8px);

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ul-team-details-role {
    font-weight: 400;
    font-size: clamp(13px, 1.2vw, 16px);
    color: var(--dark-blue);
    margin-bottom: clamp(10px, 1.05vw, 20px);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ul-team-details-descr {
    font-size: clamp(13px, 20px, 16px);
    line-height: 1.5;
    color: #4F536C;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ul-team-details-infos {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 0.79vw, 15px);
    margin: clamp(18px, 1.73vw, 33px) 0 clamp(15px, 1.58vw, 30px);
}

.ul-team-details-info,
.ul-team-details-info a {
    font-size: clamp(13px, 0.84vw, 16px);
    font-weight: 400;
    color: var(--dark-blue);
}

.ul-team-details-info a:hover {
    color: var(--accent-blue);
}

.ul-team-details-info .key {
    font-weight: 600;
    color: var(--accent-blue);
    min-width: 200px;
    font-size: clamp(15px, 0.95vw, 18px);
    display: inline-block;
}

.ul-team-details-socials {
    display: flex;
    gap: clamp(12px, 1.05vw, 20px);
    font-weight: 500;
}

.ul-team-details-socials a {
    color: var(--accent-blue);
    font-size: clamp(13px, 0.84vw, 16px);
    background-color: rgba(112, 101, 240, 0.15);
    width: clamp(33px, 1.89vw, 36px);
    aspect-ratio: 1/1;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ul-team-details-socials a:hover {
    color: white;
    background-color: var(--accent-blue);
}

.ul-team-details-courses {
    background-color: rgba(82, 95, 225, 0.05);
}

.ul-team-details-courses .ul-section-title {
    text-align: center;
    margin-bottom: clamp(16px, 2.15vw, 41px);
}

.ul-team-details-contact .ul-contact-infos {
    border-radius: 20px;
}

.ul-team-details-contact .ul-contact-infos img {
    aspect-ratio: 540/615;
    object-fit: cover;
}

.ul-team-more-details {
    background-color: #F2F7FD;
    margin-top: clamp(25px, 2.36vw, 45px);
}

.ul-team-more-details-title {
    font-weight: 600;
    font-size: clamp(21px, 1.26vw, 24px);
    margin-bottom: clamp(7px, 0.89vw, 17px);
}

.ul-team-more-details-descr,
.ul-team-more-details p {
    font-size: clamp(13px, 0.84vw, 16px);
    line-height: 1.6;
}

.ul-team-more-details-descr:last-child,
.ul-team-more-details p:last-child {
    margin-bottom: 0;
}

.ul-team-details-skills-details {
    background-color: white;
    padding: clamp(15px, 1.58vw, 30px) clamp(20px, 2.1vw, 40px);
    margin-top: clamp(25px, 2.63vw, 50px);
}

.ul-team-details-skills-details-title {
    font-weight: 600;
    font-size: clamp(17px, 1.05vw, 20px);
    margin-bottom: 0;
}

.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 1.58vw, 30px);
    margin: clamp(20px, 2.1vw, 40px) 0;
}

@media screen and (max-width: 479px) {
    .skills-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.ul-team-details-skill .skill-title {
    font-weight: 700;
    font-size: clamp(13px, 0.84vw, 16px);
    margin-bottom: clamp(4px, 0.37vw, 7px);
}