/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force page to start from top */
html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #0f172a;
    color: #e2e8f0;
}

body.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

body.dark-mode .nav-link {
    color: #cbd5e1;
}

body.dark-mode .nav-link:hover {
    color: #34d399;
}

body.dark-mode .nav-logo h2,
body.dark-mode .nav-logo h2 a {
    color: #34d399;
}

body.dark-mode .nav-logo h2 a:hover {
    color: #10b981;
}

body.dark-mode .skills {
    background: #1e293b;
}

body.dark-mode .skill-card {
    background: #334155;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

body.dark-mode .skill-card:hover {
    background: #3f4f66;
    border-color: rgba(52, 211, 153, 0.2);
}

body.dark-mode .skill-card h3 {
    color: #34d399;
}

body.dark-mode .skill-card p {
    color: #94a3b8;
}

body.dark-mode .skill-icon {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

body.dark-mode .achievements {
    background: #0f172a;
}

body.dark-mode .achievement-card {
    background: #334155;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

body.dark-mode .achievement-card:hover {
    background: #3f4f66;
    border-color: rgba(52, 211, 153, 0.2);
}

body.dark-mode .achievement-card h3 {
    color: #34d399;
}

body.dark-mode .achievement-header i {
    color: #34d399;
}

body.dark-mode .achievement-description {
    color: #94a3b8;
}

body.dark-mode .contact {
    background: #1e293b;
}

body.dark-mode .contact-info h3 {
    color: #34d399;
}

body.dark-mode .contact-item div span:first-child {
    color: #e2e8f0;
}

body.dark-mode .contact-item a {
    color: #60a5fa;
}

body.dark-mode .contact-item a:hover {
    color: #34d399;
}

body.dark-mode .contact-item i {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

body.dark-mode .contact-form {
    background: #334155;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: #475569;
    border-color: #64748b;
    color: #e2e8f0;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    border-color: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.1);
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: #94a3b8;
}

body.dark-mode .section-title {
    color: #34d399;
}

body.dark-mode .section-title::after {
    background: #34d399;
}

body.dark-mode .theme-toggle,
body.dark-mode .lang-toggle {
    background: #334155;
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

body.dark-mode .theme-toggle:hover,
body.dark-mode .lang-toggle:hover {
    background: #34d399;
    color: #0f172a;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.3);
}

body.dark-mode .footer {
    background: #0f172a;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

body.dark-mode .bar {
    background-color: #cbd5e1;
}

/* Dark mode scrollbar */
body.dark-mode ::-webkit-scrollbar-track {
    background: #1e293b;
}

body.dark-mode ::-webkit-scrollbar-thumb {
    background: #475569;
}

body.dark-mode ::-webkit-scrollbar-thumb:hover {
    background: #34d399;
}

/* Dark mode button styles */
body.dark-mode .btn-primary {
    background: #34d399;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.3);
}

body.dark-mode .btn-primary:hover {
    background: #10b981;
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.4);
}

body.dark-mode .btn-secondary {
    border-color: #34d399;
    color: #34d399;
}

body.dark-mode .btn-secondary:hover {
    background: #34d399;
    color: #0f172a;
}

/* Dark mode social links */
body.dark-mode .social-link {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

body.dark-mode .social-link:hover {
    background: #34d399;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.3);
}

/* Dark mode achievement card featured */
body.dark-mode .achievement-card.featured {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

body.dark-mode .achievement-card.featured:hover {
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

/* English Language Styles */
html[lang="en"] {
    font-family: 'Inter', 'Cairo', sans-serif;
}

html[lang="en"] .hero-title,
html[lang="en"] .hero-subtitle,
html[lang="en"] .section-title,
html[lang="en"] .skill-card h3,
html[lang="en"] .achievement-header h3,
html[lang="en"] .contact-info h3 {
    font-family: 'Inter', sans-serif;
}

html[lang="en"] .nav-menu {
    gap: 25px;
}

html[lang="en"] .nav-link {
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

html[lang="en"] .btn {
    font-family: 'Inter', sans-serif;
}

html[lang="en"] .form-group input,
html[lang="en"] .form-group textarea {
    font-family: 'Inter', sans-serif;
}

html[lang="en"] .footer {
    font-family: 'Inter', sans-serif;
}

/* RTL/LTR Adjustments */
@media (min-width: 769px) {
    html[dir="ltr"] .nav-container {
        flex-direction: row;
    }

    html[dir="ltr"] .nav-menu {
        margin-left: auto;
        margin-right: 0;
    }

    html[dir="ltr"] .nav-controls {
        order: 2;
        margin-left: 15px;
        margin-right: 0;
    }

    html[dir="ltr"] .hamburger {
        order: 3;
    }
}

html[dir="ltr"] .social-links {
    direction: ltr;
}

html[dir="ltr"] .contact-content {
    direction: ltr;
}

html[dir="ltr"] .contact-item {
    direction: ltr;
}

html[dir="ltr"] .hero-buttons {
    flex-direction: row;
}

html[dir="ltr"] .achievement-stats {
    flex-direction: row;
}

html[dir="ltr"] .skills-grid,
html[dir="ltr"] .achievements-grid {
    direction: ltr;
}

/* English specific adjustments */
@media (min-width: 769px) {
    html[lang="en"] .nav-container {
        justify-content: space-between;
    }

    html[lang="en"] .nav-logo {
        order: 0;
    }

    html[lang="en"] .nav-menu {
        order: 1;
        margin: 0 auto;
    }

    html[lang="en"] .nav-controls {
        order: 2;
        margin-left: 0;
    }

    html[lang="en"] .hamburger {
        order: 3;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-controls {
    display: none;
}

.theme-toggle,
.lang-toggle {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f8fafc;
    color: #1e3a8a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}

.theme-toggle:hover,
.lang-toggle:hover {
    background: #1e3a8a;
    color: white;
    transform: scale(1.1);
}

.lang-text {
    font-size: 12px;
    font-weight: 700;
}

.nav-logo h2 {
    color: #1e3a8a;
    font-weight: 700;
}

.nav-logo h2 a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo h2 a:hover {
    color: #10b981;
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e3a8a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image {
    margin-bottom: 30px;
}

.profile-placeholder {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.profile-placeholder i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #10b981;
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    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: #10b981;
    transform: translateY(-3px);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #10b981;
    border-radius: 2px;
}/* Skil
ls Section */
.skills {
    padding: 100px 0;
    background: #f8fafc;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.skill-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.skill-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.skill-icon i {
    font-size: 35px;
    color: white;
}

.skill-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.skill-card p {
    color: #666;
    line-height: 1.6;
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
    align-items: start;
}

.achievement-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    width: 100%;
    max-width: 380px;
    justify-self: center;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-card.featured {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto 40px auto;
    justify-self: center;
}

/* Container for small achievement cards */
.achievements-grid .achievement-card:not(.featured) {
    margin-top: 20px;
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Ensure icons are visible */
.achievement-header i::before {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
}

.achievement-header i {
    font-size: 30px;
    color: #10b981;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured .achievement-header i {
    color: #fbbf24;
}

.achievement-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.achievement-stats {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat.highlight .stat-number {
    color: #10b981;
    font-size: 2.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.achievement-description {
    line-height: 1.6;
    color: #666;
}

.featured .achievement-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.contact-item div span:first-child {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-item a {
    color: #1e3a8a;
    text-decoration: none;
}

.contact-item a:hover {
    color: #10b981;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #10b981;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-container {
        position: relative;
        justify-content: space-between;
    }
    
    .nav-controls {
        display: none;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    body.dark-mode .nav-menu {
        background-color: #0f172a;
        border: 1px solid rgba(148, 163, 184, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    

    
    .mobile-controls {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 20px 0;
        border-top: 1px solid #e5e7eb;
        margin-top: 0;
    }
    
    body.dark-mode .mobile-controls {
        border-top-color: #374151;
    }
    
    .mobile-controls .theme-toggle,
    .mobile-controls .lang-toggle {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .mobile-controls .theme-toggle:hover,
    .mobile-controls .lang-toggle:hover {
        transform: scale(1.05);
    }
    
    body.dark-mode .mobile-controls .theme-toggle,
    body.dark-mode .mobile-controls .lang-toggle {
        background: #334155;
        color: #cbd5e1;
        border: 1px solid rgba(148, 163, 184, 0.2);
    }
    
    body.dark-mode .mobile-controls .theme-toggle:hover,
    body.dark-mode .mobile-controls .lang-toggle:hover {
        background: #34d399;
        color: #0f172a;
        box-shadow: 0 4px 15px rgba(52, 211, 153, 0.3);
    }
    
    .theme-toggle,
    .lang-toggle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        justify-items: center;
    }
    
    .achievement-card.featured {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .achievement-card {
        max-width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .achievement-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    html[dir="ltr"] .achievement-stats {
        flex-direction: column;
    }
    
    html[lang="en"] .nav-container {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .skills,
    .achievements,
    .contact {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .mobile-controls {
        gap: 15px;
        padding: 15px 0;
    }
    
    .mobile-controls .theme-toggle,
    .mobile-controls .lang-toggle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
}

/* Smooth Scrolling - Already defined above */

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}/* Butto
n Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hover Effects for Social Links */
.social-link:nth-child(1):hover { background: #ea4335; } /* Email */
.social-link:nth-child(2):hover { background: #25d366; } /* Phone */
.social-link:nth-child(3):hover { background: #0077b5; } /* LinkedIn */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #10b981;
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .social-links,
    .contact-form {
        display: none;
    }
    
    .hero {
        background: none;
        color: #333;
    }
    
    .section-title {
        color: #333;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
    }
    
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .skill-icon {
        background: #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus,
input:focus,
textarea:focus {
    outline: 3px solid #10b981;
    outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #10b981;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}