/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: #000000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .container-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-new {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-new a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-lt-new, .hero-lt-new {
    font-size: 42px;
    font-weight: bold;
    color: #5B9BFC;
    position: relative;
}

.logo-text-new, .hero-logo-text-new {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-locum-new, .logo-connections-new {
    font-size: 11px;
    color: #ffffff;
    letter-spacing: 1.5px;
}

.logo-connections-new {
    color: #5B9BFC;
}

/* Navigation */
.main-nav-new ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav-new a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 0;
    white-space: nowrap;
}

.main-nav-new a:hover,
.main-nav-new a.active {
    color: #5B9BFC;
}

/* Header Right Section */
.header-right-new {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box-new {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px 20px;
    transition: background-color 0.3s ease;
}

.search-box-new:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.search-box-new input {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 13px;
    width: 120px;
    outline: none;
}

.search-box-new input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-box-new button {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}

.provider-signin-new {
    background-color: #5B9BFC;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.provider-signin-new:hover {
    background-color: #4a8ae9;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Hero Section */
.hero-new {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('/Assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Particle Effect */
.particles-new {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.particles-new::before,
.particles-new::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #5B9BFC;
    border-radius: 50%;
    animation: float-new 10s infinite ease-in-out;
}

.particles-new::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particles-new::after {
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

@keyframes float-new {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) translateX(30px);
        opacity: 0.8;
    }
}

.hero-new .container-new {
    position: relative;
    z-index: 2;
}

.hero-logo-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-lt-new {
    font-size: 80px;
}

.hero-logo-text-new {
    text-align: left;
}

.hero-logo-text-new span {
    font-size: 16px;
    letter-spacing: 3px;
    display: block;
    color: #ffffff;
}

.hero-logo-text-new span:last-child {
    color: #5B9BFC;
}

.hero-new h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1.3;
    font-weight: 300;
}

.hero-new h1 .highlight-new {
    color: #5B9BFC;
    font-weight: 400;
}

/* Service Cards */
.service-cards-new {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.service-card-new {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 0;
    width: 400px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.service-card-new:hover {
    transform: translateY(-10px);
}

.card-image-new {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-image-new.dental-practice-new {
    background-image: url('/Assets/images/dental-practice.png');
}

.card-image-new.dental-provider-new {
    background-image: url('/Assets/images/dental-provider.png');
}

.service-card-new h2 {
    font-size: 24px;
    color: #ffffff;
    padding: 20px 30px 10px;
    font-weight: 400;
}

.service-card-new .btn-new {
    margin: 20px 30px 30px;
}

/* Button container for side-by-side layout */
.card-buttons-new {
    display: flex;
    gap: 15px;
    margin: 20px 30px 30px;
}

.card-buttons-new .btn-new {
    margin: 0;
    flex: 1;
    text-align: center;
}

/* Button Styles */
.btn-new {
    display: inline-block;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary-new {
    background-color: #5B9BFC;
    color: #ffffff;
    border: 2px solid #5B9BFC;
}

.btn-primary-new:hover {
    background-color: transparent;
    color: #5B9BFC;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-secondary-new {
    background-color: transparent;
    color: #5B9BFC;
    border: 2px solid #5B9BFC;
}

.btn-secondary-new:hover {
    background-color: #5B9BFC;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Footer Styles */
.site-footer-new {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0 20px;
}

/* Footer Navigation Row */
.footer-nav-row-new {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav-new {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-nav-new a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-nav-new a:hover {
    color: #5B9BFC;
}

/* Footer Contact Row */
.footer-contact-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    text-align: center;
}

.footer-column-new h4 {
    font-size: 14px;
    color: #5B9BFC;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: capitalize;
}

.footer-column-new p {
    font-size: 20px;
    color: #ffffff;
    font-weight: 300;
}

.social-links-new {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links-new a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-new a:hover {
    transform: translateY(-3px);
}

.social-links-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer Bottom */
.footer-bottom-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.privacy-policy-new {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy-new:hover {
    color: #5B9BFC;
}

/* Section Styles for Content */
.content-section-new {
    background: #000000;
    padding: 80px 0;
}

.content-section-new.white-bg {
    background: #ffffff;
    color: #333333;
}

.content-section-new h2 {
    color: #5B9BFC;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.content-section-new.white-bg h2 {
    color: #5B9BFC;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-new h1 {
        font-size: 40px;
    }
    
    .service-cards-new {
        gap: 30px;
    }
    
    .service-card-new {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .main-nav-new {
        display: none;
    }
    
    .header-right-new {
        display: none;
    }
    
    .hero-new {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero-lt-new {
        font-size: 60px;
    }
    
    .hero-new h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .service-cards-new {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card-new {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-nav-new {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-contact-row-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links-new {
        justify-content: center;
    }
    
    .footer-bottom-new {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-lt-new {
        font-size: 36px;
    }
    
    .hero-lt-new {
        font-size: 48px;
    }
    
    .hero-new h1 {
        font-size: 28px;
    }
    
    .service-card-new h2 {
        font-size: 20px;
    }
}