        /* Careplus Ortho */
		
		:root {
            --primary-blue: #0066CC;
            --primary-blue-dark: #003A70;
            --accent-green: #228B22;
            --accent-green-dark: #1C6B1C;
            --accent-green-darker: #0F450F;
            --dark-text: #343a40;
            --light-gray: #f8f9fa;
            --footer-dark: #212529;
            --white: #ffffff;
            --text-gray: #6c757d;
            --shadow-color: rgba(0, 0, 0, 0.1);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; color: var(--dark-text); line-height: 1.5; background-color: var(--white); }
        a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
        ul { list-style: none; }
        h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
        .section { padding: 5rem 0; }
        .bg-light { background-color: var(--light-gray); }
        .bg-white { background-color: var(--white); }
        .text-center { text-align: center; }
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .justify-between { justify-content: space-between; }
        .justify-center { justify-content: center; }
        .items-center { align-items: center; }
        .gap-4 { gap: 1rem; }
        .gap-6 { gap: 1.5rem; }
        .w-full { width: 100%; }
        
        .grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
        @media (min-width: 768px) {
            .grid-2 { grid-template-columns: repeat(2, 1fr); }
            .grid-3 { grid-template-columns: repeat(3, 1fr); }
            .grid-4 { grid-template-columns: repeat(4, 1fr); }
            .md-flex-row { flex-direction: row; }
            .md-block { display: block; }
            .md-hidden { display: none; }
            .md-text-left { text-align: left; }
        }

        .btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; box-shadow: 0 4px 6px var(--shadow-color); }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 15px var(--shadow-color); opacity: 0.9; }
        .btn-primary { background-color: var(--primary-blue); color: var(--white); }
        .btn-accent { background-color: var(--accent-green); color: var(--white); }
        .btn-outline-white { border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: var(--white); }
        .btn-outline-white:hover { background: rgba(255,255,255,0.2); }

        .section-title { margin-bottom: 3rem; text-align: center; }
        .section-title h3 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark-text); }
        .section-title p { font-size: 1.125rem; color: var(--text-gray); max-width: 42rem; margin: 1rem auto 0; }
        .divider { width: 4rem; height: 4px; border-radius: 2px; margin: 0 auto; }
        .divider-blue { background-color: var(--primary-blue); }
        .divider-green { background-color: var(--accent-green); }

        .top-bar { background-color: var(--light-gray); border-bottom: 1px solid #e5e7eb; font-size: 0.75rem; padding: 0.5rem 0; display: none; }
        @media (min-width: 768px) { .top-bar { display: block; } }
        .top-links span { margin: 0 0.25rem; cursor: pointer; }
        .top-links span:hover { color: var(--primary-blue); }

        #header-menu { position: sticky; top: 0; z-index: 50; height: 5rem; transition: all 0.3s ease; background-color: rgba(255, 255, 255, 0.9); backdrop-filter: blur(5px); }
        #header-menu.scrolled { background-color: var(--white); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
        .navbar { height: 100%; display: flex; align-items: center; justify-content: space-between; }
        .logo { font-size: 1.875rem; font-weight: 700; color: var(--primary-blue); font-family: 'Poppins', sans-serif; letter-spacing: 0.05em; }
        .logo span { color: var(--accent-green); }

        .nav-menu { display: none; }
        @media (min-width: 768px) { .nav-menu { display: flex; gap: 2rem; font-weight: 500; font-family: 'Poppins', sans-serif; height: 100%; } }
        .nav-item { position: relative; display: flex; align-items: center; height: 100%; cursor: pointer; }
        .nav-link { font-size: 1.125rem; color: var(--dark-text); position: relative; padding-bottom: 5px; transition: color 0.3s; }
        .nav-link::after { content: ''; display: block; width: 0; height: 2px; background-color: var(--primary-blue); transition: width 0.3s ease, left 0.3s ease; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }
        .nav-item:hover .nav-link { color: var(--accent-green); }
        .nav-item:hover .nav-link::after { width: 100%; left: 0; transform: translateX(0); }

        .dropdown { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 14rem; border-radius: 0.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.15); border-top: 4px solid var(--primary-blue); opacity: 0; transform: translateY(10px); pointer-events: none; transition: all 0.3s ease; overflow: hidden; }
        .nav-item:hover .dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
        .dropdown a { display: block; padding: 0.75rem 1.5rem; font-size: 0.875rem; color: var(--dark-text); }
        .dropdown a:hover { background-color: var(--primary-blue); color: var(--white); }
        .rotate-icon { transition: transform 0.3s; font-size: 0.75rem; margin-left: 0.5rem; }
        .nav-item:hover .rotate-icon { transform: rotate(180deg); }

        .mobile-toggle { display: block; font-size: 1.5rem; cursor: pointer; background: none; border: none; }
        @media (min-width: 768px) { .mobile-toggle { display: none; } }
        #mobile-menu { background: var(--white); border-top: 1px solid #eee; box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
        #mobile-menu.hidden { display: none; }
        .mobile-link { display: block; padding: 0.75rem 1.5rem; font-weight: 600; border-bottom: 1px solid #f0f0f0; }
        .mobile-sublink { display: block; padding: 0.5rem 2rem; font-size: 0.9rem; color: #555; }

        #ana-sayfa { 
    position: relative; 
    width: 100%;
    height: 750px; 
    overflow: hidden; 
    color: var(--white); 
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
     #ana-sayfa { 
        height: 80vh; 
        min-height: 500px; 
    }
}

.slider-container { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1;
}

.slider-image { 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    
    background-position: center center;
    background-size: cover; 
    background-repeat: no-repeat;
    
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
    filter: brightness(0.6); 
}

.slider-image.active { 
    opacity: 1; 
}

        .hero-content {
            position: relative; z-index: 10; height: 100%; display: flex;
            flex-direction: column; justify-content: center; align-items: center;
            padding: 0 1.5rem;
        }

        .hero-box {
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 20px 25px rgba(0,0,0,0.3);
            max-width: 60rem;
            border: 1px solid rgba(255,255,255,0.15);
            animation: fadeInUp 1s ease-out;
            width: 100%;
        }

        .hero-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            line-height: 1.2;
        }
        .hero-desc {
            font-size: 1rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
            opacity: 0.95;
        }

        @media(min-width: 768px) { 
            .hero-box { padding: 3.5rem; }
            .hero-title { font-size: 3.5rem; }
            .hero-desc { font-size: 1.25rem; }
        }

        .slider-progress { position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: rgba(255,255,255,0.3); z-index: 20; }
        .progress-bar { height: 100%; width: 0; background: var(--accent-green); }

        .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.3); color: var(--white); border: none; padding: 1rem; border-radius: 50%; cursor: pointer; opacity: 0; transition: opacity 0.3s, background 0.3s; z-index: 20; }
        .slider-arrow:hover { background: rgba(255,255,255,0.5); }
        #ana-sayfa:hover .slider-arrow { opacity: 1; }
        .slider-prev { left: 1rem; }
        .slider-next { right: 1rem; }

        .slider-controls { position: absolute; bottom: 2rem; width: 100%; display: flex; justify-content: center; align-items: center; gap: 0.75rem; z-index: 20; }
        .play-pause { background: rgba(255,255,255,0.3); border: none; color: white; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; opacity: 0; transition: opacity 0.3s; }
        #ana-sayfa:hover .play-pause { opacity: 1; }
        .dot { width: 12px; height: 12px; background: rgba(255,255,255,0.5); border-radius: 50%; border: none; cursor: pointer; }
        .dot.active { background: var(--white); }

        .product-card { background: var(--white); border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: all 0.3s ease; position: relative; }
        .feature-card { padding: 2rem; border-top: 4px solid transparent; }
        .feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
        .border-blue { border-color: var(--primary-blue); }
        .border-green { border-color: var(--accent-green); }
        .feature-icon { font-size: 3rem; margin-bottom: 1rem; }
        .text-blue { color: var(--primary-blue); }
        .text-green { color: var(--accent-green); }

        .overlay-card { height: 300px; display: block; position: relative; overflow: hidden; border-radius: 0.75rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); cursor: pointer; }
        .overlay-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .overlay-card:hover img { transform: scale(1.05); }
        .card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 58, 112, 0.9), rgba(0, 58, 112, 0.4), transparent); padding: 1.25rem; display: flex; flex-direction: column; justify-content: flex-end; }
        .card-overlay.green-theme { background: linear-gradient(to top, rgba(15, 69, 15, 0.9), rgba(28, 107, 28, 0.5), transparent); }
        .overlay-title { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
        .overlay-desc { color: rgba(255, 255, 255, 0.9); font-size: 0.875rem; transform: translateY(20px); opacity: 0; transition: all 0.3s ease-out; }
        .overlay-card:hover .overlay-desc { transform: translateY(0); opacity: 1; }

        .solid-section { padding: 6rem 0; position: relative; color: var(--white); }
        .overlay-dark { padding: 3rem; border-radius: 1rem; text-align: center; }

        .contact-section { background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue)); color: var(--white); }
        .contact-card { background: rgba(255,255,255,0.1); padding: 2rem; border-radius: 0.75rem; text-align: center; transition: background 0.3s; }
        .contact-card:hover { background: rgba(255,255,255,0.2); }
        .contact-form { background: rgba(255,255,255,0.95); padding: 3rem; border-radius: 1rem; max-width: 48rem; margin: 0 auto; color: var(--dark-text); }
        .form-group { margin-bottom: 1.5rem; }
        .form-input { width: 100%; padding: 0.75rem; border: none; border-bottom: 2px solid #ddd; background: transparent; font-size: 1rem; transition: border-color 0.3s; }
        .form-input:focus { outline: none; border-color: var(--accent-green); }

        .footer { background-color: var(--footer-dark); color: #adb5bd; padding: 4rem 0 2rem; font-size: 0.875rem; }
        .footer h5 { color: var(--white); font-size: 1.125rem; font-weight: 700; margin-bottom: 1.5rem; }
        .footer-link { display: block; margin-bottom: 0.75rem; transition: color 0.3s, transform 0.3s; }
        .footer-link:hover { color: var(--accent-green); transform: translateX(5px); }
        .footer-social a { color: #adb5bd; margin-right: 1rem; font-size: 1.125rem; transition: color 0.3s; }
        .footer-social a:hover { color: var(--accent-green); }

        @keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 40px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
        @keyframes slideDownFadeIn { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
        .animate-on-scroll { opacity: 0; visibility: hidden; }
        .animated { animation-name: fadeInUp; animation-duration: 1s; animation-fill-mode: both; visibility: visible; opacity: 1; animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }
        .initial-load { animation-name: slideDownFadeIn; animation-duration: 0.6s; animation-fill-mode: both; animation-timing-function: ease-out; }