 :root {
            --primary: #1f2933;
            --secondary: #2563eb;
            --background: #f9fafb;
            --text: #374151;
            --card: #ffffff;
            --dark: #111827;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", Tahoma, sans-serif;
        }

        body {
            background: var(--background);
            color: var(--text);
            line-height: 1.6;
        }

        /* ===== HEADER ===== */
        header {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            color: white;
            padding: 60px 20px 80px;
            text-align: center;
            position: relative;
        }
      .lang-toggle-active{
        /*
            background: rgba(255,255,255,0.2);*/
        border-color: rgba(255,255,255,0.9);
        font-weight: 500;
        font-size: 14px;
      }
      
        .lang-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .lang-toggle button {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.6);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .lang-toggle button:hover {
            background: rgba(255,255,255,0.15);
        }

        .profile-photo {
            width: 170px;
            height: 240px;
            border-radius: 20%;
            object-fit: contain;
            object-position: center;
            border: 4px solid rgba(255,255,255,0.8);
            margin-bottom: 20px;
            background-color: rgb(255, 255, 255);
        }

        header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        header p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: auto;
        }

        /* ===== CONTENT ===== */
        section {
            max-width: 1000px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .card {
            background: var(--card);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        ul {
            list-style: none;
        }

        ul li {
            padding: 6px 0;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .skill-box h3 {
            color: var(--secondary);
            margin-bottom: 10px;
        }

        /* ===== INFRA ===== */
        .infra-list li {
            margin-bottom: 10px;
        }

        .infra-list span {
            color: var(--secondary);
            font-weight: 600;
        }

        /* ===== EDUCATION ===== */
        .education-item {
            margin-bottom: 20px;
        }

        .education-item strong {
            color: var(--primary);
        }

        /* ===== LEADERSHIP ===== */
        .leadership-text {
            line-height: 1.7;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            color: #d1d5db;
            text-align: center;
            padding: 40px 20px;
        }

        footer p {
            margin: 8px 0;
        }

        footer a {
            color: #60a5fa;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        .whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}