/* --- CSS Variables & Reset --- */
:root {
    --bg-color: #ffffff;
    --bg-alt: #f8f9fa;
    --text-color: #1a1a1a;
    --text-muted: #666666;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --border-color: #e5e5e5;
    --nav-height: 70px;
    --transition: all 0.3s ease;
    --form-bg: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
    --bg-color: #0f172a;
    --bg-alt: #1e293b;
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --form-bg: #1e293b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Utilities --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: 80px 0; }
.bg-alt { background-color: var(--bg-alt); }
.accent { color: var(--accent); }

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 10px;
}

/* --- Navigation --- */
.navbar {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(var(--bg-color), 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo { font-weight: 700; font-size: 1.5rem; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a:hover { color: var(--accent); }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }
#theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}
#theme-toggle:hover { background: var(--bg-alt); }

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.greeting { 
    color: var(--accent); 
    font-weight: 600; 
    display: block; 
    margin-bottom: 10px; 
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero h1 { 
    font-size: 3.5rem; 
    line-height: 1.1; 
    margin-bottom: 20px; 
    font-weight: 800;
}

.hero p { 
    font-size: 1.2rem; 
    color: var(--text-muted); 
    margin-bottom: 30px; 
}
.cta-group { display: flex; gap: 15px; flex-wrap: wrap; }

/* Profile Photo Section */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-container {
    position: relative;
    width: 450px;
    height: 450px;
}

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
}

.profile-badge {
    position: absolute;
    bottom: 1px;
    right: 20px;
    background: var(--bg-color);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.profile-badge i {
    color: #10b981;
    font-size: 1.2rem;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    font-size: 5rem;
    border: 5px solid var(--accent);
    box-shadow: var(--shadow-lg);
}

.profile-placeholder span {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 400;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary { 
    background: var(--accent); 
    color: white; 
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover { 
    background: var(--accent-hover); 
    transform: translateY(-2px);
}

.btn-outline { 
    border: 2px solid var(--border-color); 
    background: transparent; 
    color: var(--text-color); 
}

.btn-outline:hover { 
    border-color: var(--accent); 
    color: var(--accent); 
    transform: translateY(-2px);
}

/* --- About --- */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: var(--shadow-lg);
}

.about-photo-placeholder {
    margin-top: 20px;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-alt), var(--border-color));
    color: var(--text-muted);
    font-size: 4rem;
    border: 0px dashed var(--accent);
}

.about-photo-placeholder span {
    font-size: 0.9rem;
    margin-top: 10px;
}

.personal-info { 
    margin-top: 20px; 
    padding: 20px; 
    background: var(--bg-alt); 
    border-radius: 8px; 
    border-left: 4px solid var(--accent); 
}

.personal-info p { 
    margin-bottom: 5px; 
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Experience Timeline --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}
.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.company-logo-box {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.company-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.company-logo-box i {
    font-size: 2.5rem;
    color: var(--accent);
}
.timeline-content {
    flex-grow: 1;
}
.timeline-date { 
    font-size: 0.85rem; 
    color: var(--accent); 
    margin-bottom: 5px; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 4px;
}
.timeline-content h3 { font-size: 1.3rem; margin: 10px 0 5px; }
.timeline-content h4 { 
    color: var(--text-muted); 
    font-weight: 500; 
    margin-bottom: 15px; 
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.timeline-content ul { list-style: none; }
.timeline-content li { 
    position: relative;
    padding-left: 20px; 
    margin-bottom: 8px; 
    color: var(--text-muted); 
    font-size: 0.95rem;
}
.timeline-content li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- Education --- */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.edu-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.edu-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}
.edu-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.edu-card h4 { color: var(--accent); font-size: 1rem; margin-bottom: 10px; }
.edu-card .date { font-size: 0.9rem; color: var(--text-muted); font-style: italic; margin-bottom: 10px; display: block;}
.edu-card .grade { font-size: 0.9rem; font-weight: 600; color: var(--text-color); }

/* --- Skills --- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.skill-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}
.skill-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--accent); 
    box-shadow: var(--shadow);
}
.skill-card i { 
    font-size: 2.5rem; 
    color: var(--accent); 
    margin-bottom: 15px; 
    display: block;
}
.skill-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.skill-card p { font-size: 0.9rem; color: var(--text-muted); }

/* --- Projects Section --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.project-card {
    background: var(--bg-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.project-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.project-icon-box {
    width: 50px;
    height: 50px;
    background: var(--bg-alt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 1.5rem;
}
.project-body h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--text-color);
}
.project-company {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.project-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}
.project-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}
.stat-badge {
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--border-color);
}
.stat-badge i {
    color: var(--accent);
    font-size: 0.9rem;
}
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}
.project-tag {
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

/* --- Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-card {
    background: var(--bg-alt);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition);
}

.info-card:hover .icon-wrapper {
    transform: rotate(360deg);
}

.icon-wrapper i {
    font-size: 1.2rem;
    color: white;
}

.info-card h3 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 600;
}

.info-card p {
    color: var(--text-muted);
    margin-bottom: 5px;
    line-height: 1.4;
    font-size: 0.85rem;
}

.contact-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    font-size: 0.85rem;
}
.contact-link:hover {
    gap: 10px;
}
.social-links {
    grid-column: 1 / -1;
    background: var(--bg-alt);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.social-links h3 {
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-color);
}
.social-icon i {
    font-size: 1.2rem;
}
.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-3px);
}
.contact-form-wrapper {
    background: var(--bg-alt);
    padding: 15px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
}
.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}
.form-group label i {
    color: var(--accent);
    font-size: 1rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.btn-submit {
    width: 100%;
    padding: 14px 25px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
.btn-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.btn-submit:hover i {
    transform: translateX(5px);
}
.btn-submit:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}
.ph-spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer */
footer { 
    padding: 30px 0; 
    text-align: center; 
    border-top: 1px solid var(--border-color); 
    color: var(--text-muted); 
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        order: -1;
    }
    .profile-container {
        width: 280px;
        height: 280px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
    }
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .timeline-content h4 {
        justify-content: center;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 70%;
        height: calc(100vh - var(--nav-height));
        background: var(--bg-color);
        flex-direction: column;
        padding: 40px;
        transition: 0.3s;
        border-left: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    .contact-form-wrapper { padding: 25px; }
    .info-card { padding: 15px; }
    .cta-group { justify-content: center; }
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profile-container {
        width: 220px;
        height: 220px;
    }
    .profile-placeholder {
        font-size: 3rem;
    }
    .hero h1 { font-size: 2rem; }
    .icon-wrapper {
        width: 35px;
        height: 35px;
    }
    .icon-wrapper i {
        font-size: 1.1rem;
    }
    .company-logo-box {
        width: 60px;
        height: 60px;
    }
    .company-logo-box i {
        font-size: 2rem;
    }
}

@media (max-width: 360px) {
    .profile-container {
        width: 220px;
        height: 220px;
    }
    .profile-placeholder {
        font-size: 1rem;
    }
    .profile-badge {
        bottom: 1px;
        font-size: 10px;
    }
    .hero h1 { font-size: 2rem; }
    .icon-wrapper {
        width: 35px;
        height: 35px;
    }
    .icon-wrapper i {
        font-size: 1.1rem;
    }
    .company-logo-box {
        width: 60px;
        height: 60px;
    }
    .company-logo-box i {
        font-size: 1px;
    }
    .logo {
        font-size: 1rem;
    }
    .about-photo {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: var(--shadow-lg);
    }

    .about-photo-placeholder {
    margin-top: 20px;
    width: 250px;
    height: 250px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-alt), var(--border-color));
    color: var(--text-muted);
    font-size: 4rem;
    border: 0px dashed var(--accent);
    }
}

/* --- Experience Image Placeholder --- */
.experience-image-placeholder {
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px 0 20px 0;
    background-color: var(--form-bg);
    color: var(--text-muted);
    transition: var(--transition);
}
.experience-image-placeholder i {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--accent);
}
.experience-image-placeholder:hover {
    border-color: var(--accent);
}

/* ===============================
   SMALL QUICK STATS
================================ */

.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* Small stat buttons */
.quick-stats .stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 50px; /* pill shape */
  background: linear-gradient(135deg, #4e73df, #1cc88a); /* match button */
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(78, 115, 223, 0.35);
}

/* Hover effect */
.quick-stats .stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(78, 115, 223, 0.45);
}

/* Value styling */
.stat-value {
  font-weight: 700;
  font-size: 15px;
}

/* Icon */
.stat-icon {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   SKILLS
================================ */
/* ===== Section Styling ===== */
.technical-section {
    margin-top: 60px;
    /*max-width: 1100px;*/
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.technical-section h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #1f2937;
}

/* ===== Grid Layout ===== */
.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    justify-items: center;
}

/* ===== Circular Skill ===== */
.technical-circle {
    position: relative;
    width: 160px;
    height: 160px;
}

.technical-circle svg {
    transform: rotate(-90deg);
}

.technical-circle circle {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
}

.technical-bg {
    stroke: #e5e7eb;
}

.technical-progress {
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 1.5s ease;
}

/* ===== Technical Content ===== */
.technical-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.technical-content img {
    width: 28px;
    margin-bottom: 6px;
}

.technical-percent {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
}

.technical-name {
    font-size: 14px;
    color: #6b7280;
}

/* ===== Premium Hover Effect ===== */
.technical-circle:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .technical-section {
        padding: 5px;
    }
}

/*========================================================================================*/
section {
    scroll-margin-top: var(--nav-height);
}

input:not(:placeholder-shown):valid {
    border-color: #10b981;
}

input:not(:placeholder-shown):invalid {
    border-color: #ef4444;
}

a:focus,
button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}









